今天在进行spring3.1配置的时候,
遇到了Error configuring application listener of class org.springframework.web.context.ContextLoaderListener的错误 ,
按照网上的方法试了好多种,
最后发现是无法找到applicationContext.xml文件造成的。
解决办法:
首先,必须保证所有必须的jar包都已导入到/WEB-INF/lib文件夹中。
其次,在web.xml中加入
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext-*.xml,classpath*:applicationContext-*.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
一定要注意<param-value>……</param-value>中内容,如果不对的话,是找不到applicationContext.xml文件滴~~~
分享到:
相关推荐
在使用Maven构建项目时,可能会遇到发布到Tomcat服务器的困难,Error configuring application listener of class org.springframework.web.context.ContextLoaderListener错误,无法加载相应的 jar 文件,导致项目...
再者,如果在配置监听器时遇到`Error configuring application listener of class org.springframework.web.context.ContextLoaderListener`,可能是因为Eclipse在生成项目时遗漏了一些必要的Spring库。此时,应手动...
**问题一:Error configuring application listener of class org.springframework.web.context.ContextLoaderListener** 这个问题通常表明Spring的上下文加载监听器没有被正确地加载,可能是由于`...
接下来,关于IntelliJ IDEA的问题,错误“Error configuring application listener of class org.springframework.web.context.ContextLoaderListener”通常意味着Spring MVC应用的配置不完整。解决方法是确保IDEA的...
Mapping Error Pages outside of Spring MVC 27.1.12. Spring HATEOAS 27.1.13. CORS Support 27.2. The “Spring WebFlux Framework” 27.2.1. Spring WebFlux Auto-configuration 27.2.2. ...
“Error configuring application listener of class org.springframework.web.context.ContextLoaderListener”通常是由于缺少Spring的相关库。确保已正确导入Spring 3.0 Web Libraries,并且项目构建设置无误。 ...