0

エラーが発生しています

HTTP ステータス 404 - /WebServlet3.0/


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

メッセージ /WebServlet3.0/

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


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

これは、src -> com.example.servlet の下にある私の ServletAsync.java ファイルです。

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Servlet implementation class ServletAsync
 */

@WebServlet("/ServletAsync")
public class ServletAsync extends HttpServlet {
    private static final long serialVersionUID = 1L;

    /**
     * @see HttpServlet#HttpServlet()
     */
    public ServletAsync() {
        super();
        // TODO Auto-generated constructor stub
    }

    /**
     * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
     */
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // TODO Auto-generated method stub
    }

    /**
     * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
     */
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // TODO Auto-generated method stub
    }

}

これは私の 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_3_0.xsd"
    id="WebApp_ID" version="3.0">
    <display-name>WebServlet3.0</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>

そして、これは私のindex.htmlファイルです:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
    <form name="input" action="ServletAsync" method="get">
        Write a text : <input type="text" name="input"> <input
            type="submit" value="Submit">
    </form>
</body>
</html>

私の問題を修正してください。このエラーが発生する理由と解決方法を教えてください。Webページを表示したいだけです。

4

1 に答える 1

1

問題は解決しました。私のプロジェクト名は webservlet3.0 で、プロジェクトの名前を webservlet に変更すると、プロジェクトが実行されました。

于 2013-07-23T13:12:56.120 に答える