0

我已经在 J​​SP 中启动了一个项目,我正在使用 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>
4

1 回答 1

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>
于 2013-10-31T06:04:38.703 回答