spring aop 子类中的建议方法
我想建议所有类中扩展或实现特定接口或抽象类的特定方法。使用spring aop 2.5如何实现这一点?
I want to advice a particular method in all class that extends or implements a particular interface or abstract class. How can this be achieved using spring aop 2.5.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用切入点表达式:
加号 (
+
) 表示“此类/接口和所有子类/实现器”。AspectJ 子类型模式。
Using the pointcut expression:
The plus (
+
) means "this class/interface and all subclasses/implementors".AspectJ Subtype patterns.