spring aop调用joinPoint.proceed方法执行了两次的原因

通过DeBug模式追查问题和问了度娘之后,整理解决方法如下:

1、多余地使用了invoke调用方法

在方法中调用 joinPoint.proceed() 方法时,会执行两次。因为除开你在本方法中执行的一次之外,spring会在方法也会执行一次.所以应该改用@XXXReturning等方法,如@After改成@AfterReturning:

@AfterReturning(value = "execution(* *(..)) && @annotation(log)",returning = "result")// 指定拦截被LogAnnotation注解的方法
public void afterLog(JoinPoint point, LogAnnotation log,Object result) {}

Object result即是方法的运行结果

 

2、使用了多余的标签

比如,切面类的注解,如果包含@Component会导致执行两次:
@Aspect
@Order(0)
@Component

 

参考:https://zhidao.baidu.com/question/1735635628431003907.html

 

不过@Component如果作为自动装配bean的存在,去掉显然不合适(解决参考方法一)。

 

3、使用的是@Around方式

@Befor 方法前执行一次
@Around 方法前后各执行一次(相当于@Befor和@After一起使用)
@After 方法后执行一次

参考:https://bbs.csdn.net/topics/220027749

 

 

你可能感兴趣的:(问题解决)