我已经在 JSP 中启动了一个项目,我正在使用 eclipse Helios 3.6 和 tomcat 6.0 与之集成,问题是,当我从 eclipse 启动 tomcat 服务器时,它正常启动(意味着主页显示在“localhost:8085” ),但是当我创建一个“新的动态 Web 项目”(即使是在“web-content”文件夹中显示 index.html 的非常简单的项目)时,我得到了 404 not found 错误。目录结构如下
我正在通过“localhost:8085/testing”访问该项目,但它显示像这样的 404 错误............
我的 web.xml 代码也很简单:-
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>testing</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>