无法从 eclipse 运行 spring 项目,ClassNotFoundException: org.springframework.web.context.ContextLoaderListener
我在 Eclipse 内部运行 spring 项目时遇到问题。
这是我得到的错误:
SEVERE: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener
Here are the Tomcat settings:
我不明白为什么它不起作用,spring 类包含在类路径中。
I'm having trouble running my spring project from inside Eclipse.
This is the error I get:
SEVERE: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener
Here are the Tomcat settings:
I don't understand why it's not working, the spring classes are included in the classpath.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要 spring-web jar。我看到您正在使用 maven:
注意:最新版本是 3.0.5.RELEASE。另外,您可以通过包来识别spring项目,即
org.springframework.web
You need the spring-web jar. I see you're using maven:
NOTE: that the latest release is 3.0.5.RELEASE. Also, you can identify the spring project by the package, i.e.
org.springframework.web
我遇到了同样的错误。我转到项目属性/部署程序集,然后添加我的 spring 库。我的项目构建路径上也有我的 spring 库。
为我工作。希望这有帮助:]
I encountered the same error. I went to project properties/deployment assembly then added my spring library. I also have my spring library on my project build path.
Worked for me. Hope this helps :]