标签:path TE ram 配置 location XML web.xml cat name
<!--给监听器指定加载的xml -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml,classpath:spring-quartz-task.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
指定了要加载的xml,
而不会去加载/WEB-INF/下的applicationContext.xml。
但是,如果没有指定的话,默认会去/WEB-INF/下加载applicationContext.xml。
标签:path TE ram 配置 location XML web.xml cat name
原文地址:https://www.cnblogs.com/2016-cxp/p/9128772.html