Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想建议所有类中扩展或实现特定接口或抽象类的特定方法。使用spring aop 2.5如何实现这一点。
使用切入点表达式:
within(some.package.MyInterface+)
加号 ( +) 表示“这个类/接口和所有子类/实现者”。
+
AspectJ 子类型模式。