Tomcat 7 的 apache maven tomcat 插件出现 404 问题
我正在使用以下配置来朗姆酒 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
并尝试访问:
或应用程序中的任何页面我刚刚收到 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:
or any page in the application i just get 404 error
any ideas why i am facing such issue ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我面临着类似的问题。我的解决方案与实际插件仅略有相关。
我已经升级到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.