我有一个方法注释(@MethodAnno)和一个参数注释(@P)。我需要创建一个方面来捕获使用@MethodAnno注释的方法的调用,并查找用@P注释的方法参数。但是,虽然我能够在方面中获取方法注释,但MethodSignature中不会返回参数注释。以下是我所拥有的。
注解
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface MethodAnno {
Foo[] foo();
}
@Target({ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
public @interface P {
Bar value();
}
方面
@Aspect
@Component
public class MyAspect {
@Before("@annotation(methodAnnotation)")
public void methodsWithMethodLevelAnnotation(final JoinPoint pjp, MethodAnno methodAnnotation) {
MethodSignature signature = (MethodSignature) pjp.getSignature();
Annotation[][] parameterAnnotations = signature.getMethod().getParameterAnnotations();
// parameterAnnotations is always a single element array and the element is a zero-length array
}
}
用法
public interface Service {
public void execute(String input);
}
@Service
public class ServiceImpl implements Service {
@Override
@MethodAnno
public void execute(@P String input) {
....
}
}