如何使用注释自动装配factorybean实例(而不是getObject()对象)?

发布于 2024-11-06 10:14:56 字数 401 浏览 3 评论 0原文

我知道在使用 XML 定义 bean 时可以获得对 factorybean 实例的引用(Spring)。例如:

<property name="factoryBean" ref="&amp;theFactoryBean" />

但这也可以通过注释来做到这一点吗? (也许使用@Autowired和@Qualifer?)

你是否必须注释factorybean本身才能被Spring组件扫描发现?

I know it is possible to get the reference to the factorybean instance when defining the beans with XML (Spring). e.g.:

<property name="factoryBean" ref="&theFactoryBean" />

But is this also posible to do this with annotations? (maybe with @Autowired and @Qualifer?)

Do you have to annotate the factorybean itself to be discovered by Spring component-scan?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

猥琐帝 2024-11-13 10:14:56

让你的bean实现BeanFactoryAware,但正如skaffman所说,这不是一个很好的实践。

Make your bean implement BeanFactoryAware, but as skaffman says, it's not a great practice.

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