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