@Pointcut("@annotation(com.fansheng.base.common.annotation.OpLog)") public void logPointCut() { } /** 处理完请求后执行 */ @AfterReturning(pointcut = "logPointCut()", returning = "apiResult") public void doAfterReturning(JoinPoint joinPoint, Object apiResult){ handleLog(joinPoint, null, apiResult); } /** 异常拦截操作 */ @AfterThrowing(value = "logPointCut()", throwing = "e") public void doAfterThrowing(JoinPoint joinPoint, Exception e) { handleLog(joinPoint, e, null); } protected void handleLog(final JoinPoint joinPoint, final Exception e, Object apiResult) { if (UserContextHolder.get() == null) { return; } OpLog logAnnotation = getAnnotation(joinPoint); LogAudit logAudit = new LogAudit(); // logAudit.setOperateType(); logAudit.setOperatorId(UserContextHolder.get().getUserId()); logAudit.save(); } /** * 是否存在注解,如果存在就获取 */ private OpLog getAnnotation(JoinPoint joinPoint) { Signature signature = joinPoint.getSignature(); MethodSignature methodSignature = (MethodSignature) signature; Method method = methodSignature.getMethod(); if (method != null) { return method.getAnnotation(OpLog.class); } return null; }这几个方法是干什么的
时间: 2024-04-19 21:23:30 浏览: 156
这段代码是使用了 Spring AOP(面向切面编程)来实现日志记录的功能。
首先,`logPointCut()` 方法用于定义一个切入点(Pointcut),即指定哪些方法会被切入(拦截)进行日志处理。
接下来,`doAfterReturning()` 方法使用了 `@AfterReturning` 注解,表示在目标方法正常返回后执行。它拦截了切入点为 `logPointCut()` 的方法,并在方法执行后调用 `handleLog()` 方法进行日志记录。
然后,`doAfterThrowing()` 方法使用了 `@AfterThrowing` 注解,表示在目标方法抛出异常后执行。它也拦截了切入点为 `logPointCut()` 的方法,并在方法抛出异常后调用 `handleLog()` 方法进行日志记录。
在 `handle()` 方法中,首先通过 `UserContextHolder.get()` 判断是否存在用户上下文信息,若不存在则直接返回。接着通过 `getAnnotation()` 方法获取目标方法上的 `OpLog` 注解,以获取操作日志相关的信息。
然后创建一个 `LogAudit` 对象,并设置一些相关属性,比如操作类型和操作者ID等。最后调用 `logAudit.save()` 方法来保存日志信息。
总体来说,这段代码实现了在方法执行前和执行后记录操作日志的功能。通过 AOP 拦截指定的方法,并根据注解和方法信息进行日志记录。
相关问题
@Pointcut("@annotation(com.ais.dsg.common.log.annotation.SysOptLog)") public void sysLogAspect() { }什么意思
这是一个使用Spring AOP切面编程的代码片段,其中包含了@Pointcut注解。具体来说:
- @Pointcut:表示定义一个切入点,用来匹配需要被切入的方法。
- "@annotation(com.ais.dsg.common.log.annotation.SysOptLog)":表示匹配被@SysOptLog注解标注的方法。
- public void sysLogAspect() {}:表示切入点的方法名称,这个方法没有具体的实现,只是用来定义一个切入点。
因此,这段代码的意思是:定义一个切入点方法sysLogAspect(),用来匹配被@SysOptLog注解标注的方法。当我们在其他的切面中需要匹配被@SysOptLog注解标注的方法时,可以直接使用这个切入点方法,而不需要重复定义匹配规则。
需要注意的是,这里的@SysOptLog注解是自定义的注解,可能和其他项目的注解定义不同。
@pointcut(@annotation)
@pointcut(@annotation)是Spring AOP中的一个注解,它可以用来指定一个切点,该切点选择所有带有特定注解的方法或类。例如,如果我们想要记录所有带有@Log注解的方法的日志,我们可以定义一个切点,使用@pointcut(@annotation(Log.class))注解来选择这些方法。
在使用@pointcut(@annotation)注解时,我们需要注意一些细节。首先,我们需要确保在我们的应用程序中存在我们选择的注解。此外,我们需要确保我们的Spring AOP配置正确,以便我们的切面可以正常工作。
除了选择注解之外,@pointcut还可以用于其他选择器,例如方法名、类名、参数类型等等。这些选择器可以组合在一起,从而创建更复杂的切点,以满足我们的业务需求。
总的来说,@pointcut(@annotation)是一个非常有用的注解,它让我们可以轻松地选择需要执行切面的方法或类,并能够快速地实现AOP的功能。
阅读全文