ContextLoaderListener的作用
Posted yuanfei1110111
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ContextLoaderListener的作用相关的知识,希望对你有一定的参考价值。
ContextLoaderListener监听器的作用:在启动Web容器时,自动装配ApplicationContext的配置信息。因为它实现了ServletContextListener接口,在web.xml中配置这个监听器,启动容器时,就会默认执行它实现的方法。在ContextLoaderListener中关联了ContextLoader这个类,所以整个加载配置过程由ContextLoader来完成。
如果在web.xml中不写任何参数配置信息,默认的路径是/WEB-INF/applicationContext.xml,即在WEB-INF目录下创建的xml文件的名称必须是applicationContext.xml;
如果是要自定义文件名,可以在web.xml里加入contextConfigLocation这个context参数。举例:
<listener>
<description>Spring监听器</description>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- ContextLoaderListener初始化Spring上下文时需要使用到的contextConfigLocation参数 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<!-- 配置spring.xml和spring-mybatis.xml这两个配置文件的位置,固定写法 -->
<param-value>classpath:spring.xml,classpath:spring-mybatis.xml</param-value>
</context-param>
以上是关于ContextLoaderListener的作用的主要内容,如果未能解决你的问题,请参考以下文章
Spring 中 ContextLoaderListener 的作用/目的?