0

JSP でプロジェクトを開始しました。Eclipse Helios 3.6 と Tomcat 6.0 の統合を使用しています。問題は、Tomcat サーバーを Eclipse から起動すると、正常に起動することです (つまり、ホームページが「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 に答える