春季MVC:在耳朵内共享上下文
我有一个耳朵包装,其中包含一个带有常见对象的罐子和两个我想使用通用罐子的战争Web应用程序。我已经将配置设置为通过 ContextLoaderListener 和 Webapp context 分别用于 DispatcherServlet 使用应用程序范围的上下文。
我的演示应用程序的设置大致如下
-
common.jar
包含 applicationContext.xml 和 beanRefContext.xml,它们应该是应用程序(耳朵)范围的上下文。文件如下所示。共享命名空间是共享 Bean 所在的位置。
应用语境
<beans>
<!-- namespace etc declarations omitted -->
<context:annotation-config />
<context:component-scan base-package="study.spring.multicontext.shared" />
</beans>
beanRefContext.xml
<beans>
<!-- namespace etc declarations omitted -->
<bean id="sharedContext" class="org.springframework.context.support.ClassPathXmlApplicationContext">
<constructor-arg>
<list>
<value>classpath*:applicationContext.xml</value>
</list>
</constructor-arg>
</bean>
</beans>
-
webapp1
并且是Spring MVC应用程序打包为与Web.xml文件的独立战争,如下所示webapp2
<web-app> <context-param> <param-name>parentContextKey</param-name> <param-value>sharedContext</param-value> </context-param> <context-param> <param-name>locatorFactorySelector</param-name> <param-value>classpath:beanRefContext.xml</param-value> </context-param> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath*:applicationContext.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <servlet> <servlet-name>dos</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/dos-servlet.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>dos</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
和xx-servlet.xml就像webapp特定的上下文一样。web 命名空间是控制器所在的位置。
<beans>
<!-- namespace etc declarations omitted -->
<context:component-scan base-package="study.spring.multicontext.web"/>
<mvc:annotation-driven />
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="suffix" value=".jsp"/>
</bean>
</beans>
-
共享的 Bean 在 Controller 类中以正常方式@Autowired
@Autowired MySharedBean mySharedBean
-
耳朵包装既有战争又有罐子,结构像
ear | |--common.jar | |--META-INF | |--applicationContext.xml | |--beanRefContext.xml | |--webapp1.war | |--WEB-INF | |--xx-servlet.xml | |--web.xml | |--webapp2.war | |--WEB-INF | |--xx-servlet.xml | |--web.xml
问题是仍然会有两个bean的实例。每个控制器/web 应用一个,因为每个战争中只有一个控制器。我试图摆弄配置,但无论我做什么,我要么得到零个实例,要么得到两个实例。
我从内存转储中检查了Eclipse MAT的引用,实际上有4个实例,但我想这两个实例是供Spring内部使用的。无论如何,从那里可以清楚地看到每个控制器都有自己的实例。
我读过许多博客文章,讨论论坛等,他们说这应该像这样简单。有些人建议JNDI,但据我所知,如果没有它,这应该是可能的。
而且不可能将战争结合起来,把罐子捆在里面。由于它可能适用于此演示应用程序,因此我正在处理的现实生活中的案例不允许这样做。
非常感谢有关此事的任何帮助。提前致谢。
SpringSource 示例来自 2007 年的 Spring 2.X,它执行相同的操作,但配置不同。有点过时,正在寻找基于Spring 3.X的解决方案,如赏金描述中所述。