学习是最好的投资!
使用 @within("ssm.annotation.Log"),可以拦截被 @Log 註解的類別的所有方法。
@within("ssm.annotation.Log")
@Log
@annotation 这个表达式只能针对方法。 如果要实现你想要的效果,那就得用 @execution(* * *(..)) 切入所有类所有方法。然后在 切入点逻辑里面判断该类有没有 @Log 註解
@annotation
@execution(* * *(..))
` @Pointcut("執行(public com.company..controller...(..))")private void 建議() {}`
使用
@within("ssm.annotation.Log")
,可以拦截被@Log
註解的類別的所有方法。@annotation
这个表达式只能针对方法。如果要实现你想要的效果,那就得用
@execution(* * *(..))
切入所有类所有方法。然后在 切入点逻辑里面判断该类有没有
@Log
註解` @Pointcut("執行(public com.company..controller...(..))")
private void 建議() {}`