applicationContext.xml 配置文件在web.xml中的写法

applicationContext.xml 配置文件的一些认识
存放位置:
1:src下面
需要在web.xml中定义如下:

contextConfigLocation
classpath:applicationContext.xml


2:WEB-INF下面
需要在web.xml中定义如下:

contextConfigLocation
WEB-INF/applicationContext*.xml


spring的 配置文件在启动时,加载的是web-inf目录下的applicationContext.xml,
运行时使用的是web-info/classes目录下的applicationContext.xml。

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



contextConfigLocation
/WEB-INF/classes/applicationContext.xml


多个配置文件的加载

contextConfigLocation

classpath*:conf/spring/applicationContext_core*.xml,
classpath*:conf/spring/applicationContext_dict*.xml,
classpath*:conf/spring/applicationContext_hibernate.xml,
classpath*:conf/spring/applicationContext_staff*.xml,
classpath*:conf/spring/applicationContext_security.xml
classpath*:conf/spring/applicationContext_modules*.xml
classpath*:conf/spring/applicationContext_cti*.xml
classpath*:conf/spring/applicationContext_apm*.xml



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


首先与Spring相关的配置文件必须要以"applicationContext-"开头,要符合约定优于配置的思想,这样在效率上和出错率上都要好很多。
还有最好把所有Spring配置文件都放在一个统一的目录下,如果项目大了还可以在该目录下分模块建目录。这样程序看起来不会很乱。
在web.xml中的配置如下:
Xml代码

contextConfigLocation
classpath*:**/applicationContext-*.xml


"**/"表示的是任意目录;
"**/applicationContext-*.xml"表示任意目录下的以"applicationContext-"开头的XML文件。
你自己可以根据需要修改。最好把所有Spring配置文件都放在一个统一的目录下,如:



contextConfigLocation
classpath:/spring/applicationContext-*.xml

你可能感兴趣的:(ssih...)