Tomcat在eclipse中启动,我也可以在浏览器中打开以下URL:
http://localhost:8080/test/index.html
但是,我无法在该页面中打开我的资源。
我得到的错误是:
HTTP Status 404 - /
type Status report
message http:/test/index.html
description The requested resource (/test/index) is not available.
Apache Tomcat/6.0.29
答案 0 :(得分:1)
请在eclipse中尝试以下步骤,将项目部署为WAR File,而不是EAR File:
Project Explorer
右键点击test
(这是您项目的名称,如果我做对了)Export->WAR file
Browse...
按钮以选择部署的目标文件夹。这应该是Tomcat
安装的Web应用程序文件夹:<TOMCAT_INSTALLATION>/webapps
其中<TOMCAT_INSTALLATION>
是您安装Tomcat的文件夹。Finish
现在启动Tomcat服务器。假设您在Eclipse中的index.html
项目的WebContent
文件夹中有test
文件,则在打开URL时,您应该在浏览器中看到index.html
的内容。