如何使一个方面面向所有属于用特定批注标记的类的所有公共方法?在下面的方法中,method1()和method2()应该由方面处理,而method3()不应由方面处理。

@SomeAnnotation(SomeParam.class)
public class FooServiceImpl extends FooService {
    public void method1() { ... }
    public void method2() { ... }
}

public class BarServiceImpl extends BarService {
    public void method3() { ... }
}


如果将注释放在方法级别,则此方面将起作用并匹配方法调用。

@Around("@annotation(someAnnotation)")
public Object invokeService(ProceedingJoinPoint pjp, SomeAnnotation someAnnotation)
 throws Throwable {
   // need to have access to someAnnotation's parameters.
   someAnnotation.value();


}

我正在使用基于Spring和基于代理的方面。

最佳答案

以下应该工作

@Pointcut("@target(someAnnotation)")
public void targetsSomeAnnotation(@SuppressWarnings("unused") SomeAnnotation someAnnotation) {/**/}

@Around("targetsSomeAnnotation(someAnnotation) && execution(* *(..))")
public Object aroundSomeAnnotationMethods(ProceedingJoinPoint joinPoint, SomeAnnotation someAnnotation) throws Throwable {
    ... your implementation..
}

10-04 16:59