使用proxy-target-class ="true"用春豆 [英] Using proxy-target-class="true" with Spring beans

查看:493
本文介绍了使用proxy-target-class ="true"用春豆的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用"Jersey Rest",并且希望"Jersey"过滤器可以访问一些春豆.

但是,正如我从其他线程中发现的那样,Jersey无法获得Spring Bean(如果它们是Java代理而不是生成的Java代理).我想添加proxy-target-class ="true"

这样做有什么影响,也可以仅在单个bean上设置它,还是需要在所有引用的bean上设置它?

解决方案

通过设置proxy-target-class="true",您将使用CGLIB2作为代理,而不是jdk代理.

含义如下,如<

proxyMode=ScopedProxyMode.TARGET_CLASS

Im using Jersey Rest and want a Jersey filter to have access to some spring beans.

however as I've discovered from other threads, Jersey does not obtain Spring beans if they are Java proxies as opposed to generated java proxies. I want to add the proxy-target-class="true"

What are the impacts of doing so and also can this just be set on a single bean or does it need to be set on all referenced beans?

解决方案

By setting proxy-target-class="true" you will be using CGLIB2 for your proxies, instead of jdk proxys.

The implications are the following, as described in de documentation:

  • final methods cannot be advised, as they cannot be overriden.

  • You will need the CGLIB 2 binaries on your classpath, whereas dynamic proxies are available with the JDK. Spring will automatically warn you when it needs CGLIB and the CGLIB library classes are not found on the classpath.

  • The constructor of your proxied object will be called twice. This is a natural consequence of the CGLIB proxy model whereby a subclass is generated for each proxied object. For each proxied instance, two objects are created: the actual proxied object and an instance of the subclass that implements the advice. This behavior is not exhibited when using JDK proxies. Usually, calling the constructor of the proxied type twice, is not an issue, as there are usually only assignments taking place and no real logic is implemented in the constructor.

Also, you should be able to make a "target-proxy" for a specific component by using

proxyMode=ScopedProxyMode.TARGET_CLASS

这篇关于使用proxy-target-class ="true"用春豆的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆