无法从 eclipse 运行 spring 项目,ClassNotFoundException: org.springframework.web.context.ContextLoaderListener

发布于 2024-10-30 13:00:50 字数 438 浏览 2 评论 0原文

我在 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:

Here are the 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:

Here are the settings

I don't understand why it's not working, the spring classes are included in the classpath.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

春花秋月 2024-11-06 13:00:50

您需要 spring-web jar。我看到您正在使用 maven:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>3.0.5.RELEASE</version>
</dependency>

注意:最新版本是 3.0.5.RELEASE。另外,您可以通过包来识别spring项目,即org.springframework.web

You need the spring-web jar. I see you're using maven:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>3.0.5.RELEASE</version>
</dependency>

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

反话 2024-11-06 13:00:50

我遇到了同样的错误。我转到项目属性/部署程序集,然后添加我的 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 :]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文