java - Spring AOP 中如何使用 @Pointcut(?) 拦截被 “特定注解” 注解的类中所有的方法?
PHPz
PHPz 2017-04-18 10:44:14
0
3
1218
PHPz
PHPz

学习是最好的投资!

reply all(3)
刘奇

All methods of the class annotated with @within("ssm.annotation.Log"),可以拦截被 @Log.

洪涛

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

Peter_Zhu

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

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template