Spring从另一个项目导入应用程序上下文

发布于 2024-11-16 18:56:29 字数 204 浏览 2 评论 0原文

我有 2 个项目,其中一个包含在另一个构建路径中,它们都有自己的应用程序上下文定义他的 bean。

我想管理全局事务,所以我必须在一个应用程序上下文中导入它们,但我没有找到实现这一点的方法。

不同的项目中可以有 2 个应用程序上下文,并将其中一个导入到另一个中。

如果不可能,哪一个是最好的解决方案?

我想把2个项目变成1个项目。

I have 2 projects, one of them is included in the other one build path, both of them have his own application context defining his beans.

I want to manage Global Transactions so I have to have in one application context the import of both of them, but I didn't find the way to do that.

It is possible have 2 application context in different project and import one of them to the other.

If there is no possible which would be the best solution?

I have think in become the 2 projects in 1.

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

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

发布评论

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

评论(2

甜嗑 2024-11-23 18:56:29

是的,可以导入;在您的 appcontext xml 之一中:

<beans>

    <import 
        resource="classpath*:/META-INF/whatever/root/to/otherAppContext.xml" />

    <bean id="beanA" class="..."/>
    <bean id="beanB" class="..."/>

</beans>

Yes it is possible to import; in one of your appcontext xmls:

<beans>

    <import 
        resource="classpath*:/META-INF/whatever/root/to/otherAppContext.xml" />

    <bean id="beanA" class="..."/>
    <bean id="beanB" class="..."/>

</beans>
耀眼的星火 2024-11-23 18:56:29

这篇古老的 Spring 博客文章几乎准确地描述了您想要做的事情。

http:// /blog.springsource.com/2007/06/11/using-a-shared-parent-application-context-in-a-multi-war-spring-application/

This oldish Spring blog post describes pretty much exactly what you're trying to do.

http://blog.springsource.com/2007/06/11/using-a-shared-parent-application-context-in-a-multi-war-spring-application/

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