aspectj pointcut with annotation parameters

前端 未结 2 1792
死守一世寂寞
死守一世寂寞 2020-12-14 03:34

I am using aspectj to intercept methods that are annotated with @Profile(description=\"something\")

@Re         


        
相关标签:
2条回答
  • 2020-12-14 04:03
    @Pointcut("@annotation(com.merc.annotations.Profile)")
    protected void logAnnotatedMethods(Profile profile) {
    }
    

    This is not correct, @annotation() wants a parameter name, not a parameter type.

    If your class is compiled with debug code, the pointcut parameter must have the same name as the method parameter, if not, you need to either rely on the parameter types being unique or explicitly write out your parameter names using the argNames parameter:

    @Pointcut(value="@annotation(profile)",argNames="profile")
    protected void logAnnotatedMethods(Profile arg) {    }
    

    Reference:

    • @Pointcut javadocs
    0 讨论(0)
  • 2020-12-14 04:06

    I was playing around and found that the following worked

    @Pointcut("@annotation(profile)")
    protected void logAnnotatedMethods(Profile profile) {
    }
    
    0 讨论(0)
提交回复
热议问题