您的位置:首页 > 编程语言 > Java开发

多个 spring的配置文件加载

2008-03-12 15:45 363 查看
在多个人做同一个项目的时候肯定需要使用多个struts_config.xml文件和多个applicationContext.xml文件。那么怎么配置这些文件呢?

首先配置多个struts_congfig.xml文件。。 在web.xml中写下面的代码:

    config
   
     /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
   
   (前提是保证这几个文件的存在。)

这样多个struts_config.xml的配置文件就完了。。

继续配置多个applicationContext.xml文件。这个是在struts_config.xml文件下完成的:

   className="org.springframework.web.struts.ContextLoaderPlugIn">
       value="/WEB-INF/classes/applicationContext.xml,/WEB-INF/classes/applicationContext_zzg.xml,/WEB-INF/classes/applicationContext_mhb.xml" />
(也是要保证文件的存在)

这样就配置完了。 有的人配置多个applicationContext.xml文件也在XML下配置。配置代码如下:

contextConfigLocation

classpath:/applicationContext*.xml

(这种方式的配置是所有applicationContext.xml文件都在classes下)。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  spring struts xml