suchen

Heim  >  Fragen und Antworten  >  Hauptteil

java - Spring AOP 中如何使用 @Pointcut(?) 拦截被 “特定注解” 注解的类中所有的方法?

PHPzPHPz2802 Tage vor1221

Antworte allen(3)Ich werde antworten

  • 怪我咯

    怪我咯2017-04-18 10:46:14

    使用 @within("ssm.annotation.Log"),可以拦截被 @Log 注解的类的所有方法。

    Antwort
    0
  • PHP中文网

    PHP中文网2017-04-18 10:46:14

    @annotation 这个表达式只能针对方法。
    如果要实现你想要的效果,那就得用 @execution(* * *(..)) 切入所有类所有方法。
    然后在 切入点逻辑里面判断该类有没有 @Log 注解

    Antwort
    0
  • 天蓬老师

    天蓬老师2017-04-18 10:46:14

    ` @Pointcut("execution(public com.company..controller...(..))")
    private void advice() {}`

    Antwort
    0
  • StornierenAntwort