Closed
Description
Edited by @kriegaex
When i use the code , i get the error(aspectj is 1.9.6)
java.util.EmptyStackEcxeption
at java.util.Stack.peek(Stack.java:102)
at org.aspectj.runtime.reflect.JoinPointImpl.proceed(JoinPointImpl.java:180)
.....run()
However,i use 1.9.1,it is ok
I need help,thank you.
@Aspect
@DeclarePrecedence(BB,AA)
public class AA{
@Pointcut
.....
@Around
public Object around(){
Thread{
point.proceed
}
}
}
@Aspect
public class BB{
@Pointcut
.....
@Around
public Object around(){
point.proceed
}
}