web.xml中的配置
Posted 青蛙跳跳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web.xml中的配置相关的知识,希望对你有一定的参考价值。
<!--给监听器指定加载的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。
以上是关于web.xml中的配置的主要内容,如果未能解决你的问题,请参考以下文章
tonmcat中的web项目中的web.xml为啥设置默认首页没有作用呢?
Spring MVC中,applicationContext.xml [ServletName]-servlet.xml配置文件在web.xml中的配置详解...