spring aop 子类中的建议方法

发布于 2024-10-08 15:54:05 字数 58 浏览 0 评论 0原文

我想建议所有类中扩展或实现特定接口或抽象类的特定方法。使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沧笙踏歌 2024-10-15 15:54:05

使用切入点表达式:

within(some.package.MyInterface+)

加号 (+) 表示“此类/接口和所有子类/实现器”。

AspectJ 子类型模式

Using the pointcut expression:

within(some.package.MyInterface+)

The plus (+) means "this class/interface and all subclasses/implementors".

AspectJ Subtype patterns.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文