博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IDEA:ClassNotFoundException: ContextLoaderListener
阅读量:6120 次
发布时间:2019-06-21

本文共 1480 字,大约阅读时间需要 4 分钟。

hot3.png

使用Idea新建了一个springmvc的项目,但是启动的时候报这个异常。 Error configuring application listener of class org.springframework.web.context.ContextLoaderListener

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

  • ClassNotFoundException:说明没有找到这个类,但是在web.xml没有异常,并且还能进入到spring的监听类中
contextConfigLocation
/WEB-INF/applicationContext.xml
org.springframework.web.context.ContextLoaderListener
dispatcher
org.springframework.web.servlet.DispatcherServlet
1
dispatcher
*.form

百度后发现其实ecplise中也有过这种问题,jar明明在却就是找不到,最后的解决方案发现tomcat的应用下面没有lib这个文件夹,导致jar无法放进去,从而出现的这个问题。

服务器报错信息:

23-Jul-2018 10:27:28.858 严重 [RMI TCP Connection(3)-127.0.0.1] org.apache.catalina.core.StandardContext.listenerStart Error configuring application listener of class [org.springframework.web.context.ContextLoaderListener] java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener

按照上面ecplise发生的错误,检查idea的配置(推测是因为jar没有放入web-inf下面)

因为项目在编写时没有出现问题,应该是在打包发布的时候出现了问题

如下图可以看到WEB-INF文件下并没有lib目录,而在右边显示可用的元素

  • 那么接下来右键右面的HelloWorld,并选择Put into Output Root(非常重要,否则相关jar包不能进行发布)

然后我们就可以在web-inf小面看到我们添加的jar包

那么接下来再启动我们的Tomcat

问题完美解决

 

转载于:https://my.oschina.net/u/3908739/blog/1861268

你可能感兴趣的文章
在soapui上踩过的坑
查看>>
MySQL的字符集和字符编码笔记
查看>>
ntpd同步时间
查看>>
must implement java.io.Serializable hessian
查看>>
Microsoft Licenses Flash Lite for Windows Mobile Users
查看>>
HDOJ 2020 绝对值排序
查看>>
HDOJ/HDU 2560 Buildings(嗯~水题)
查看>>
Maven编译时跳过Test
查看>>
Spring Boot 整合Spring Security 和Swagger2 遇到的问题小结
查看>>
[20170628]12C ORA-54032.txt
查看>>
除以2
查看>>
高可用集群原理解析
查看>>
Nginx配置URL转向tomcat
查看>>
极客Web前端开发资源大荟萃#001
查看>>
让div固定在某个位置
查看>>
Java开发环境Docker镜像
查看>>
从无到有,WebService Apache Axis2初步实践
查看>>
任务调度(一)——jdk自带的Timer
查看>>
UIKit框架(15)PCH头文件
查看>>
整理看到的好的文档
查看>>