是否可以将一个方面编织到动态实例化的类中?

发布于 2024-11-02 19:10:15 字数 480 浏览 0 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(2

南七夏 2024-11-09 19:10:15

如果我阅读 Spring 文档是正确的,你可以像这样(对于基于Spring代理的编织):

ProxyFactory factory = new ProxyFactory(new SimplePojo());
factory.addInterface(Pojo.class);
factory.addAdvice(new RetryAdvice());

Pojo pojo = (Pojo) factory.getProxy();

或者像这样(对于AspectJ风格的编织):(

AspectJProxyFactory factory = new AspectJProxyFactory(new SimplePojo()); 
factory.addAspect(new RetryAspect());

Pojo proxy = factory.getProxy();

我通过我的bean配置驱动所有的AOP编织,所以我没有需要使用实践中也有类似的情况。)

If my reading of the Spring docs is correct, you do it like this (for Spring proxy-based weaving):

ProxyFactory factory = new ProxyFactory(new SimplePojo());
factory.addInterface(Pojo.class);
factory.addAdvice(new RetryAdvice());

Pojo pojo = (Pojo) factory.getProxy();

or like this (for AspectJ-style weaving):

AspectJProxyFactory factory = new AspectJProxyFactory(new SimplePojo()); 
factory.addAspect(new RetryAspect());

Pojo proxy = factory.getProxy();

(I drive all my AOP weaving through my bean configuration so I've not needed to use this sort of thing in practice.)

滴情不沾 2024-11-09 19:10:15

不,您只能使用 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.

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