Maven 工程启动找不到 Spring ContextLoaderListener和IntrospectorCleanupList的解决办法

 

用maven 工程搭建项目,在搭建好之后,运行时却抛出了这样的错误:  

 

java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener

 

java.lang.ClassNotFoundException: org.springframework.web.util.IntrospectorCleanupListener

Maven 工程启动找不到 Spring ContextLoaderListener和IntrospectorCleanupList的解决办法_第1张图片

Maven 工程启动找不到 Spring ContextLoaderListener和IntrospectorCleanupList的解决办法_第2张图片

这说明根本没有找到我们在 web.xml 里面配置的 listener, 但maven 的pom.xml  里面已经配置相应的包,而且可以在java 工程的maven dependency jar 包里面找到, 这说明maven是没有问题的,在网上搜索了很多答案,最多的就是类似这个文章: http://www.cnblogs.com/zhouyalei/archive/2011/11/30/2268606.html 基本都是这样去解决,但是貌似对我来说不行,而且比较麻烦,需要修改 .project , .classpath 等文件。其实有更简单的办法.

在eclipse 里面, 参考如下配置:

Maven 工程启动找不到 Spring ContextLoaderListener和IntrospectorCleanupList的解决办法_第3张图片

1. 右键单击工程项目 ->点击 properties
2. 选择 Deployment Assembly
3. 点击 Add -> Java Build Path Entries -> Next
4. 选择 Maven Dependencies -> Finish -> Apply -> OK
5. Clean project and server. 重启server


这样就能解决maven  下找不到 spring listener 的问题。

你可能感兴趣的:(error,Java)