web.xml 术语叫做 部署描述符,在WEB-INF目录下面.web.xml文件会被Tomcat自动加载并读取,如果有其他目录下面的XML文件也要加载到Tomcat内存的话,一般也是在web.xml文件中配置,web.xml中通过contextConfigLocation配置spring。。
在Spring中,使用contextConfigLocation参数就会加载其他的xml配置文件,如果没有这个参数,spring默认加载web-info/applicationContext.xml文件.
但是在使用此参数之前,需要配置.ContextLoaderListener
<listener>
<listener-class> org.springframework.web.context.ContextLoaderListener<listener-class >
</listener>
它会在创建时自动查找WEB-INF/ 下的applicationContext.xrnl 文件。如果要加载其他的xml文件,则通过contextConfigLocation进行配置
其代码格式为:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:applicationContext.xml
classpath:conf/spring/applicationContext_core.xml,
classpath:conf/spring/applicationContext_dict.xml,
classpath:conf/spring/applicationContext_hibernate.xml,
</param-value>
</context-param>
这样既实现了spring中多配置文件的初始化。使用多配置文件,不仅能减小默认配置文件的大小,还有利于配置和项目的管理