是否可以将一个方面编织到动态实例化的类中?
我使用 Spring 并有一个方面包装了一些类:
@Aspect
public class LoggingAspect{
@Around("execution(public * com.service.MyService.doStuff(..))")
public Object log(){
...
}
}
并且在上下文 xml: 中,
<aop:aspectj-autoproxy/>
<bean id="loggingAspect" class="com.bla.bla.bla.LoggingAspect"/>
问题是 MyService
的实例是在运行时创建的,因此 Spring 在上下文初始化阶段对此类一无所知。在这种情况下是否可以使用方面来包装使用 new (不是 Spring)实例化的类的方法调用?
I use Spring and have an aspect that wraps around some class:
@Aspect
public class LoggingAspect{
@Around("execution(public * com.service.MyService.doStuff(..))")
public Object log(){
...
}
}
and in context xml:
<aop:aspectj-autoproxy/>
<bean id="loggingAspect" class="com.bla.bla.bla.LoggingAspect"/>
The problem is that instances of MyService
are created at runtime so Spring knows nothing about this class during context initialization phase. Is it possible to use aspects in this case to wrap method calls of a class instantiated using new
(not Spring)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我阅读 Spring 文档是正确的,你可以像这样(对于基于Spring代理的编织):
或者像这样(对于AspectJ风格的编织):(
我通过我的bean配置驱动所有的AOP编织,所以我没有需要使用实践中也有类似的情况。)
If my reading of the Spring docs is correct, you do it like this (for Spring proxy-based weaving):
or like this (for AspectJ-style weaving):
(I drive all my AOP weaving through my bean configuration so I've not needed to use this sort of thing in practice.)
不,您只能使用 Spring AOP 来通知 Spring beans(因为 Spring 在幕后创建了一个代理对象)。您必须使用完整的 AspectJ,或者在 Spring 容器中创建 MyService。请参阅 http:// static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/aop.html#aop-choosing。
No, you can only use Spring AOP to advise Spring beans (because Spring creates a proxy object behind the scenes). You'll have to use full AspectJ, or create your MyService in the Spring container. See http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/aop.html#aop-choosing.