用于库使用的 Spring IoC 上下文配置?
我有一个应用程序 A 和一个库 B。
相应地,还有上下文配置文件:a.xml
和 b.xml
。 b.xml
并不完整,它需要 a.xml
才能工作。
但是,我不能只在a.xml
中import 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对库定义的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.