ホームページ > に質問 > 本文
怪我咯2017-04-18 10:46:14
クラスのすべてのメソッドには@within("ssm.annotation.Log"),可以拦截被 @Logの注釈が付けられます。
@within("ssm.annotation.Log")
@Log
PHP中文网2017-04-18 10:46:14
@annotation 这个表达式只能针对方法。 如果要实现你想要的效果,那就得用 @execution(* * *(..)) 切入所有类所有方法。然后在 切入点逻辑里面判断该类有没有 @Logメモ
@annotation
@execution(* * *(..))
天蓬老师2017-04-18 10:46:14
` @Pointcut("実行(public com.company..controller...(..))")private void advice() {}`