@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Timed
Public @interface MyCustomAnnotation{
@AliasFor(annotation = Timed.class , attribute = "value")
String value();
}
@Timed的实现(TimedAspect.class)使用@Around注释进行调用。如何通过自定义注释使用此内部实现?