在多个人做同一个项目的时候肯定需要使用多个struts_config.xml文件和多个applicationContext.xml文件。那么怎么配置这些文件呢?
首先配置多个struts_congfig.xml文件。。 在web.xml中写下面的代码:
<init-param>
<param-name>config</param-name>
<param-value>
/WEB-INF/struts-config.xml,/WEB-INF/struts-config_mhb.xml,/WEB-INF/struts-config_zzg.xml,/WEB-INF/struts-config_lf.xml,/WEB-INF/struts-config_sx.xml
</param-value>
</init-param>(前提是保证这几个文件的存在。)
这样多个struts_config.xml的配置文件就完了。。
继续配置多个applicationContext.xml文件。这个是在struts_config.xml文件下完成的:
<plug-in
className="org.springframework.web.struts.ContextLoaderPlugIn">
<set-property property="contextConfigLocation"
value="/WEB-INF/classes/applicationContext.xml,/WEB-INF/classes/applicationContext_zzg.xml,/WEB-INF/classes/applicationContext_mhb.xml" />
</plug-in>(也是要保证文件的存在)
这样就配置完了。 有的人配置多个applicationContext.xml文件也在XML下配置。配置代码如下:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:/applicationContext*.xml</param-value>
</context-param> (这种方式的配置是所有applicationContext.xml文件都在classes下)。