运行tomcat但404返回没有错误

时间:2017-04-20 17:09:56

标签: java spring maven tomcat http-status-code-404

我试图通过tomcat maven插件在tomcat服务器上运行我的项目。

在我的pom xml中:

<plugin>
    <groupId>org.apache.tomcat.maven</groupId>  
    <artifactId>tomcat7-maven-plugin</artifactId>  
    <version>2.2</version>
    <configuration>
        <source>${java.version}</source>
        <target>${java.version}</target>
    </configuration>
</plugin>

我在Eclipse中通过此命令运行项目:

-e clean tomcat:run

服务器启动时没有错误或警告,但在粘贴网页浏览器的地址栏404错误后(在eclipse控制台中没有错误或警告)。

我该如何解决这个问题?如果您还需要更多信息,请在评论中提及。

2 个答案:

答案 0 :(得分:1)

写入位置中不存在

index页面,这是404未找到错误的原因。请在index.jspindex.html文件夹中创建/src/main/webappWebContent

答案 1 :(得分:0)

1.在eclipse tomcat配置中检查&#34;部署路径&#34;基本上它是路径路径,它将寻找部署的war文件  如果需要,使用自定义位置并配置服务器路径。

2.请检查我认为您已配置的tomcat-users.xml。如果没有,请将以下配置添加到tomcat-users.xml

<role rolename="manager-gui" /> 
<role rolename="manager-script" /> 
<user username="admin" password="admin" roles="manager-gui,manager-script" />