私はサーブレットの作業を始めたばかりで、初心者です。サーブレットを呼び出す送信ボタンを備えた html ページを作成しました。その html コードは次のとおりです。
<html>
<head>
<title>A simple revision of servlets</title>
</head>
<body>
<form method="POST" action="Idiot">
<input type="SUBMIT">
</form>
</body>
</html>
デプロイメント記述子は、次のように web.xml という名前です。
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<servlet>
<servlet-name>TangoCharlie</servlet-name>
<servlet-class>com.example.web.Revise</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>TangoCharlie</servlet-name>
<url-pattern>/Idiot</url-pattern>
</servlet-mapping>
</web-app>
サーブレットのコードは次のとおりで、名前は :Revise.java です。
package com.example.web;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
public class Revise extends HttpServlet
{
public void doPost(HttpServletRequest request,HttpServletResponse response) throws IOException,ServletException
{
response.setContentType("text/html");
PrintWriter out=response.getWriter();
//out.println("<html><body><h3>Hello</h3></body></html>");
out.println("Hello");
}
}
Tomcat サーバーの webapps 内に次のディレクトリを保持しています。webapps->リビジョン->page.html
webapps->Revision->WEB-INF->web.xml
webapps->Revision->WEB-INF->classes->com->example->web->Revise.class
Mozilla Firefox で page.html を実行して送信をクリックすると、空白のページが表示されます。Chrome で page.html を実行すると、次のメッセージが表示されます。
Server error
The website encountered an error while retrieving http://localhost:8080/Revision/Idiot.It may be down for maintenance or configured incorrectly.
Here are some suggestions:
Reload this webpage later.
HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.
どこが間違っていますか???