在Tomcat服务器上运行Eclipse项目时出现以下错误:
HTTP状态404-请求的资源(/ ProjectName /)不可用。
浏览器地址栏中的URL为http://localhost:8080/ProjectName/。
http://localhost:8080/ProjectName/
我真的不知道文件中缺少什么。我Index.jsp在/WebContent文件夹中有一个,并且我的web.xml包含以下条目:
Index.jsp
/WebContent
web.xml
<welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list>
默认情况下,当您打开项目根文件夹http://localhost:8080/ProjectName/而不是中的物理文件时http://localhost:8080/ProjectName/Index.jsp,服务器将在中查找欢迎文件web.xml。如果未找到任何内容,则将出现此404“找不到页面”错误。
http://localhost:8080/ProjectName/Index.jsp
就您而言,URL和文件名 区分大小写 。您声明index.jsp是欢迎文件,但提到您有一个Index.jsp。将其重命名为index.jsp,然后您就可以通过这种方式用欢迎文件打开webapp的上下文根。
index.jsp