Tomcat 7 的 apache maven tomcat 插件出现 404 问题

发布于 2024-12-11 18:25:59 字数 596 浏览 0 评论 0原文

我正在使用以下配置来朗姆酒 tomcat 7 与 Maven

<plugin>
    <groupId>org.apache.tomcat.maven</groupId>
    <artifactId>tomcat7-maven-plugin</artifactId>
    <version>2.0-SNAPSHOT</version>
    <configuration>
        <path>/${project.build.finalName}</path>
    </configuration>
</plugin>

它工作正常 现在突然尝试使用 mvn tomcat7:run

并尝试访问:

http://localhost: 8080/myapp

或应用程序中的任何页面我刚刚收到 404 错误

任何想法为什么我面临这样的问题?

i am using following configuration to rum tomcat 7 with maven

<plugin>
    <groupId>org.apache.tomcat.maven</groupId>
    <artifactId>tomcat7-maven-plugin</artifactId>
    <version>2.0-SNAPSHOT</version>
    <configuration>
        <path>/${project.build.finalName}</path>
    </configuration>
</plugin>

it was working fine
and suddenly now when trying to use mvn tomcat7:run

and trying to access:

http://localhost:8080/myapp

or any page in the application i just get 404 error

any ideas why i am facing such issue ?

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

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

发布评论

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

评论(1

忘你却要生生世世 2024-12-18 18:25:59

我面临着类似的问题。我的解决方案与实际插件仅略有相关。

我已经升级到2.0-beta-1。

该插件隐藏了控制台输出中的实际错误。

我使用“旧”tomcat 插件(mvn tomcat:run)运行,它显示了我的问题。

我的 applicationContext.xml 没有被加载,并且该错误被吞没。

I was facing a similar problem. My solution was only slightly related to the actual plugin.

I've upgraded to 2.0-beta-1.

The plugin was hiding the actual error from the console output.

I ran with the "old" tomcat plugin (mvn tomcat:run) and it showed my problem.

My applicationContext.xml wasn't getting loaded and that error was being swallowed.

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