首页 > 问答 > 正文
怪我咯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 建议() {}`