欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决Tomcat启动显示 HTTP Status 404 – Not Found 无法访问index.jsp

程序员文章站 2022-07-14 22:59:42
...

Web项目解决Tomcat服务器:报错

The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.

解决Tomcat启动显示 HTTP Status 404 – Not Found 无法访问index.jsp

调整了很多配置参数, 甚至在web.xml中配置也不奏效

 <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
 </welcome-file-list>

最后发现原来是项目路径配置错了。

修改步骤:
idea Tomcat环境为例:

解决Tomcat启动显示 HTTP Status 404 – Not Found 无法访问index.jsp

编辑服务器配置

解决Tomcat启动显示 HTTP Status 404 – Not Found 无法访问index.jsp

修改项目启动路径

解决Tomcat启动显示 HTTP Status 404 – Not Found 无法访问index.jsp 

重新启动,index.jsp默认加载成功。