私はサーブレット用にこのコードを書きました
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class Httpservlet1 extends HttpServlet
{
public void doGet(HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException
{
String color = request.getParameter("color");
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
pw.println("<B>The selected color is: ");
pw.println(color);
pw.close();
}
}
私はそれをコンパイルし、対応するhtmlファイルアクション属性値は
action="http://localhost:8765/HS/HTTPSERVLET">
と web.xml が含まれています
サーブレット名 4
サーブレットクラス Httpservlet1
xml コード形式のservlet-name four
url-pattern /HTTPSERVLET を実行してもエラー メッセージが表示される