我已经在JSP中启动了一个项目,我正在使用eclipse Helios 3.6和tomcat 6.0与它集成,问题是,当我从eclipse启动tomcat服务器时,它正常启动(意味着hompage正在“localhost”上显示:8085“),但是当我制作一个”新的动态网络项目“(即使是非常简单的项目,只在”web-content“文件夹中显示index.html)我得到了404找不到错误。 目录结构如下
我通过“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>
答案 0 :(得分:0)
在“web.xml”文件中的<display-name>
标记之前加入以下行,然后它可能对您有帮助......
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>