web.xml中配置spring监听器和spring配置文件位置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web.xml中配置spring监听器和spring配置文件位置相关的知识,希望对你有一定的参考价值。
<!-- spring配置文件位置 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<!-- spring核心监听器 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
以上是关于web.xml中配置spring监听器和spring配置文件位置的主要内容,如果未能解决你的问题,请参考以下文章