我嘗試在this網站中運行簡單的aop示例。我有Spring AOP和AspectJ,aspectjweaver罐子: @Aspect
public class StringAspect {
@Pointcut("call(* String.toLowerCase())")
public void toLowerCasePointcut() {}
@Around
我怎麼能編寫適用於方法執行其控裝置,帶註釋的接口方法的AspectJ切入點?例如: interface A {
@MyAnnotation void method();
}
class B implements A {
void method();
}
切入點execution(@MyAnnotation * *.*(..))不只有B.method()進行註釋本身相匹