如何在localhost中打开我的资源:8080 / test / index.html?

时间:2014-01-08 05:30:13

标签: java eclipse java-ee tomcat

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

1 个答案:

答案 0 :(得分:1)

请在eclipse中尝试以下步骤,将项目部署为WAR File,而不是EAR File

  1. Project Explorer右键点击test(这是您项目的名称,如果我做对了)
  2. 在上下文菜单中选择Export->WAR file
  3. 在弹出的对话框窗口中,单击Browse...按钮以选择部署的目标文件夹。这应该是Tomcat安装的Web应用程序文件夹:<TOMCAT_INSTALLATION>/webapps其中<TOMCAT_INSTALLATION>是您安装Tomcat的文件夹。
  4. 点击Finish
  5. 现在启动Tomcat服务器。假设您在Eclipse中的index.html项目的WebContent文件夹中有test文件,则在打开URL时,您应该在浏览器中看到index.html的内容。