必威体育Betway必威体育官网
当前位置:首页 > IT技术

web.xml配置contextConfigLocation

时间:2019-08-26 14:40:00来源:IT技术作者:seo实验室小编阅读:79次「手机版」
 

contextconfiglocation

web.xml中classpath:和classpath*:  有什么区别? 

classpath:只会到你的class路径中查找找文件; 

classpath*:不仅包含class路径,还包括jar文件中(class路径)进行查找.

有时候会用模糊匹配的方式配置多配置文件。

但是如果配置文件是在jar包里,模糊匹配就找不到了。可以用逗号隔开的方式配置多个配置文件。

如:

[html] view plain copy

  1. <context-param>  
  2.     <param-name>contextconfiglocation</param-name>  
  3.     <param-value>classpath*:APPlicationContext.xml,  
  4.         classpath*:app-datasource.xml,  
  5.         classpath*:app-memcached.xml,  
  6.         classpath*:app-iBATis.xml,  
  7.         classpath*:app-rest.xml  
  8.     </param-value>  
  9. </context-param>  

存放位置:

1:src下面

需要在web.xml中定义如下:

[html] view plain copy

  1. <context-param>  
  2. <param-name>contextConfigLocation</param-name>  
  3. <param-value>classpath:applicationContext.xml</param-value>  
  4. < /context-param>  

2:WEB-INF下面

需要在web.xml中定义如下:

[html] view plain copy

  1. <context-param>  
  2. <param-name>contextConfigLocation</param-name>  
  3. <param-value>WEB-INF/applicationContext*.xml</param-value>  
  4. </context-param>  

web.xml 通过contextConfigLocation配置Spring 的方式 

SSI框架配置文件路径问题: 

struts2的 1个+N个 路径:src+src(可配置) 名称: struts.xml + N 

spring 的 1个 路径: src 名称: applicationContext.xml

ibatis 的 1个+N个 路径: src+src(可配置) 名称: sqlMapConfig.xml + N 

部署到tomcat后,src目录下的配置文件会和class文件一样,自动copy到应用的 classes目录下 

spring的 配置文件在启动时,加载的是web-info目录下的applicationContext.xml, 

运行时使用的是web-info/classes目录下的applicationContext.xml。 

配置web.xml使这2个路径一致: 

[html] view plain copy

  1. <context-param>   
  2. <param-name>contextConfigLocation</param-name>   
  3. <param-value>/WEB-INF/classes/applicationContext.xml</param-value>   
  4. </context-param>   

多个配置文件的加载 

[html] view plain copy

  1. <context-param>   
  2. <param-name>contextConfigLocation</param-name>   
  3. <param-value>   
  4. classpath*:conf/spring/applicationContext_core*.xml,   
  5. classpath*:conf/spring/applicationContext_dict*.xml,   
  6. classpath*:conf/spring/applicationContext_hibernate.xml,   
  7. classpath*:conf/spring/applicationContext_staff*.xml,   
  8. classpath*:conf/spring/applicationContext_security.xml   
  9. classpath*:conf/spring/applicationContext_modules*.xml   
  10. classpath*:conf/spring/applicationContext_cti*.xml   
  11. classpath*:conf/spring/applicationContext_apm*.xml   
  12. </param-value>   
  13. </context-param>   

contextConfigLocation 参数定义了要装入的 Spring 配置文件。 

首先与Spring相关的配置文件必须要以"applicationContext-"开头,要符合约定优于配置的思想,这样在效率上和出错率上都要好很多。 

还有最好把所有Spring配置文件都放在一个统一的目录下,如果项目大了还可以在该目录下分模块建目录。这样程序看起来不会很乱。 

在web.xml中的配置如下: 

Xml代码 

[html] view plain copy

  1. <context-param>   
  2. <param-name>contextConfigLocation</param-name>   
  3. <param-value>classpath*:**/applicationContext-*.xml</param-value>   
  4. </context-param>   

"**/"表示的是任意目录; 

"**/applicationContext-*.xml"表示任意目录下的以"applicationContext-"开头的XML文件。 

你自己可以根据需要修改。最好把所有Spring配置文件都放在一个统一的目录下,如: 

<!-- Spring 的配置 --> 

[html] view plain copy

  1. <context-param>   
  2. <param-name>contextConfigLocation</param-name>   
  3. <param-value>classpath:/spring/applicationContext-*.xml</param-value>   
  4. </context-param>   

相关阅读

Web.xml中Context-param的作用

1.启动一个WEB项目的时候,容器(如:Tomcat)会去读它的配置文件web.xml.读两个节点: <listener></listener> 和<context-param></c

web.xml中context-param的配置作用

一、定义<context-param>  <param-name>参数名</param-name>  <param-value>参数值</param-value>  </context-param>作用:

spring默认启动位置以及contextConfigLocation设置源

spring默认启动位置以及contextConfigLocation设置源码解析 这几天在看spring的源码,涉及到spring启动位置的部分,下面就看看sprin

分享到:

栏目导航

推荐阅读

热门阅读