用于库使用的 Spring IoC 上下文配置?

发布于 2024-10-20 18:56:08 字数 295 浏览 2 评论 0原文

我有一个应用程序 A 和一个库 B。

相应地,还有上下文配置文件:a.xmlb.xmlb.xml 并不完整,它需要 a.xml 才能工作。

但是,我不能只在a.xmlimport b.xml,因为b.xml的路径尚未确定。我想要使​​用某种自动发现功能。 (这可能类似于 java.util.ServiceLoader。)

这可能吗?

I have an application A and a library B.

And correspondingly, the context config files: a.xml and b.xml. b.xml is not complete, it requires a.xml to work.

However, I can't just import b.xml in a.xml, because the path of b.xml is not determined. I want some kind of automatic discover to use. (Which maybe similar to java.util.ServiceLoader.)

Is it possible?

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

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

发布评论

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

评论(1

可是我不能没有你 2024-10-27 18:56:08

对库定义的bean使用@Configuration,Spring最终将集成所有@Configuration bean和主应用程序的上下文xml中定义的bean。

Using @Configuration for library defined beans, and Spring will integrate all @Configuration beans and beans defined in context xmls for main application at last.

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