在开始使用Spring读取配置文件ApplicationContext.xml的时候没有配置监听器,在web.ml中配置如下:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>但是在Tomcat启动的时候日志中显示如下:
信息: No Spring WebApplicationInitializer types detected on classpath
也就是Spring没有配置文件,导致后面访问的时候发生错误。
后来查找之下是发现没有在web.xml中使用ContextLoaderListener监听器。设置监听器
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</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
中设置:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>ContextLoaderListener会读取这些XML文件并产生 WebApplicationContext对象,然后将这个对象放置在ServletContext的属性
里,这样我们只要可以得到Servlet就可 以得到WebApplicationContext对象,并利用这个对象访问spring 容器管理的bean。
初始成功之后显示如下
信息:
Initializing Spring root WebApplicationContext
本文详细介绍了在使用Spring读取配置文件时遇到的问题及解决方案,包括配置监听器ContextLoaderListener的重要性,如何在web.xml中正确配置以确保Spring配置文件被正确加载。通过设置contextConfigLocation参数,可以自定义读取多个配置文件或修改默认路径,从而避免Spring容器无法正常初始化的情况。
1226

被折叠的 条评论
为什么被折叠?



