aspectj 不拦截带有注释的方法
aspectj not intercepting methods with annotation
我正在尝试让 aspectj 拦截带注释的方法:
@Aspect
public class InterceptMeAspect {
@Around("execution(* *(..)) && within(@InterceptMe *)")
public Object doIntercept(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
System.out.println("intercepted:");
return proceedingJoinPoint.proceed();
}
}
public class InterceptedExample {
@InterceptMe
public void doSomething(){
}
}
为简洁起见,我删除了 !within(InterceptMeAspect),但它并没有拦截太多。如果我删除注释约束(在(@InterceptMe *)内),它可以工作,但会拦截所有内容并造成大问题。
输出字节码似乎具有完整的注释,因此我希望注释标准匹配。我正在做或试图做编译时编织。这很重要,因为我有另一个方面可以使用上述相同的方法工作。我怀疑那个方面搞乱了这个,但最终的字节码不应该有注释,对吧?
编辑:
这是另一个方面的代码:
@Around(
"execution(protected * *(..)) && !within(com.walterjwhite.logging..*) && !call(*.new(..)) && within(@ContextualLoggable *) && !within(@NonLoggable *)")
我有一个通用日志记录方面和一个特殊的上下文日志记录方面。我猜这也写错了,应该遵循上面的格式。
当您使用自定义注释时,您应该使用@annotation 而不是within:
@Aspect
public class InterceptMeAspect {
@Around("execution(* *(..)) && @annotation(com.or.org.package.InterceptMe)")
而不是 @Around("execution(* *(..)) && within(@InterceptMe *)")
。
应该是@Around("execution(* *(..)) && @annotation(your.package.InterceptMe )")
或者,如果您需要从注解访问某些属性:
@Around("execution(* *(..)) && @annotation(interceptMeVar)")
public Object doIntercept(ProceedingJoinPoint proceedingJoinPoint,InterceptMe interceptMeVar)
我正在尝试让 aspectj 拦截带注释的方法:
@Aspect
public class InterceptMeAspect {
@Around("execution(* *(..)) && within(@InterceptMe *)")
public Object doIntercept(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
System.out.println("intercepted:");
return proceedingJoinPoint.proceed();
}
}
public class InterceptedExample {
@InterceptMe
public void doSomething(){
}
}
为简洁起见,我删除了 !within(InterceptMeAspect),但它并没有拦截太多。如果我删除注释约束(在(@InterceptMe *)内),它可以工作,但会拦截所有内容并造成大问题。
输出字节码似乎具有完整的注释,因此我希望注释标准匹配。我正在做或试图做编译时编织。这很重要,因为我有另一个方面可以使用上述相同的方法工作。我怀疑那个方面搞乱了这个,但最终的字节码不应该有注释,对吧?
编辑: 这是另一个方面的代码:
@Around(
"execution(protected * *(..)) && !within(com.walterjwhite.logging..*) && !call(*.new(..)) && within(@ContextualLoggable *) && !within(@NonLoggable *)")
我有一个通用日志记录方面和一个特殊的上下文日志记录方面。我猜这也写错了,应该遵循上面的格式。
当您使用自定义注释时,您应该使用@annotation 而不是within:
@Aspect
public class InterceptMeAspect {
@Around("execution(* *(..)) && @annotation(com.or.org.package.InterceptMe)")
而不是 @Around("execution(* *(..)) && within(@InterceptMe *)")
。
应该是@Around("execution(* *(..)) && @annotation(your.package.InterceptMe )")
或者,如果您需要从注解访问某些属性:
@Around("execution(* *(..)) && @annotation(interceptMeVar)")
public Object doIntercept(ProceedingJoinPoint proceedingJoinPoint,InterceptMe interceptMeVar)