-2

HTTP ステータス 404 - /プロジェクト/


タイプ ステータス レポート

メッセージ /プロジェクト/

説明 要求されたリソース (/Project/) は利用できません。


アパッチ トムキャット/7.0.16

<?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_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>Project</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>

これは、Eclipse で自動生成された web.xml です。

4

2 に答える 2

0

サーブレットとそのマッピングを web.xml で定義していないため、サーブレットに対する要求が入ったときにサーバーがそのdoGetまたはメソッドを呼び出すことができます。doPostこれを web.xml に追加します。コメントは、各タグの使用法を説明しています。<!-- ..... -->各タグからパーツを削除できます

<servlet>
<servlet-name>myservlet</servlet-name>  <!-- You can give any name -->
<servlet-class>com.abu.MyFirstServlet</servlet-class> Your servlet class's fully qualified name
</servlet>

<servlet-mapping>
<servlet-name>myservlet</servlet-name> the name that you mentioned in the above tag
<url-pattern>/index.html</url-pattern> the url for which the request must be sent to the servlet.
</servlet-mapping>

これは、入力するたびにhttp://localhost:8080/YourPorject/index.htmlコンテナがサーブレットのdoGetordoPostメソッドを呼び出すことを意味します。サーブレットに関する基本的な知識を得るには、このwiki ページを参照してください。

于 2012-11-01T11:03:35.813 に答える
0

上記のリストから 1 つのファイルをルート ディレクトリに配置する必要があります。

于 2012-11-01T11:04:06.330 に答える