spring加载配置文件三办法

来源:互联网 发布:软件测试报告模板范文 编辑:程序博客网 时间:2024/04/30 03:32

总结一下: 据我目前所知的spring有三种方式来创建ApplicationContext.

1、把applicationContext.xml直接放在WEB-INF/classes下,spring会采用默认的加载方式

2、采用在web.xml中配置ContextLoaderListenera或ContextLoaderServlet指定加载路径方式。它们两个有着同样的功能,都实现在了org.springframework.web.context.ContextLoader类,都要定义contextConfigLocation参数。区别在于listener不能在Servlet 2.2兼容的容器中使用。自从Servelt 2.4规范,listener被要求在web应用启动后初始化。web.xml初始化的时候,listerner会检查contextConfigLocation参数。如果不存在的话,它将默认使用/WEB-INF/applicationContext.xml。如果它存在,它就会用预先定义的分隔符(逗号,分号和空格)分开分割字符串(<param-value></param-value),并将这些值作为应用上下文将要搜索的位置。


代码
<context-param> 
    <param-name>contextConfigLocation</param-name> 
    <param-value> 
      /WEB-INF/daoContext.xml,  
     /WEB-INF/config/appContext1.xml,  
    /WEB-INF/config/appContext2.xml  
</param-value> 
</context-param> 
 
<listener> 
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
</listener> 
 
<!-- 另一种是使用ContextLoaderServlet  
<servlet> 
    <servlet-name>context</servlet-name> 
    <servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class> 
    <load-on-startup>1</load-on-startup> 
</servlet> 
--> 


3 通过ClassPathXmlApplicationContext或XmlWebApplicationContext代码动态加载!