Spring :监听器ContextLoaderListener的作用

在开始使用Spring读取配置文件ApplicationContext.xml的时候没有配置监听器,在web.ml中配置如下:

 
  1. <context-param>

  2. <param-name>contextConfigLocation</param-name>

  3. <param-value>classpath:applicationContext.xml</param-value>

  4. </context-param>


但是在Tomcat启动的时候日志中显示如下:

信息: No Spring WebApplicationInitializer types detected on classpath​​

也就是Spring没有配置文件,导致后面访问的时候发生错误。

后来查找之下是发现没有在web.xml中使用ContextLoaderListener监听器。设置监听器

 
  1. <listener>

  2. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>

  3. </listener>


启动tomcat之后日志如下:

2014-1-9 16:42:24 org.apache.catalina.core.ApplicationContext log
信息: Initializing Spring root WebApplicationContext

Spring提供ServletContentListener的一个实现类ContextLoaderListener监听器,该类可以作为Listener使用,在启动Tomcat

容器的时候,该类的作用就是自动装载ApplicationContext的配置信息,如果没有设置contextConfigLocation的初始参数则会

使用默认参数WEB-INF路径下的application.xml文件。如果需要自定义读取多个配置文件或者修改默认路径,则可以在web.xml

中设置:

 
  1. <context-param>

  2. <param-name>contextConfigLocation</param-name>

  3. <param-value>classpath:applicationContext.xml</param-value>

  4. </context-param>

ContextLoaderListener会读取这些XML文件并产生 WebApplicationContext对象,然后将这个对象放置在ServletContext的属性

里,这样我们只要可以得到Servlet就可 以得到WebApplicationContext对象,并利用这个对象访问spring 容器管理的bean。

初始成功之后显示如下

信息: Initializing Spring root WebApplicationContext

猜你喜欢

转载自blog.csdn.net/bingguang1993/article/details/83010118