严重: Error configuring application listener of class org.springframework.web.context.ContextLoaderLis

来源:互联网 发布:上海炫踪网络很烂 编辑:程序博客网 时间:2024/05/18 03:51
严重: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener 

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


查看jar包,jar包是存在的,tomcat部署目录的lib目录下没有jar包,

问题解决:

可能是你的jar文件没有同步发布到自己项目的lib目录中(如果你是用Maven进行构建的话) 可以试试 下面的办法 项目点击右键 点击 Properties 选择Deployment Assembly 再点击右边的Add按钮 选择Java Build Path Entries后点击Next按钮 然后选择你的Maven Dependencies (jar包所在的本地仓库)确定即可

0 0