结合切点指示器来使用.


    配置表达式, 格式为:

    注解+(切点指示器+表达式格式)

    1. /**
    2. * 定义注解切点
    3. */
    4. //@Pointcut("@annotation(AroundDemo.annotation.InterceptClass)") 拦截注解标注的方法的(如果注解放在类上面就失效)
    5. @Pointcut("@within(AroundDemo.annotation.InterceptClass)")//拦截注解标注的类上的所有方法
    6. public void tokenIntercept() {
    7. }