よくある質問で申し訳ありませんが、気が狂いそうです。Ubuntu Server で実行されている Tomcat を使用して、JSP の開発から始めています。最初の「Hello World」サーブレットを実行しようとしていますが、成功しません。
サーバーには次のものがあります。
webapps
ディレクトリは次のとおりです。/var/lib/tomcat6/webapps/
webapps
context-roothello/
ディレクトリを作成しましたhello/
を含みindex.html
、WEB-INF/
WEB-INF
を含みweb.xml
、classes/HelloServlet.class
これはindex.html
次のとおりです。
<html>
<body>
Click to request the HelloServlet.
<form action = "/hello/helloworld" method = "get" >
<input type = "submit" value = "REQUEST" />
</form>
</body>
</html>
これはWEB-INF/web.xml
次のとおりです。
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<servlet>
<servlet-name>test</servlet-name>
<servlet-class>HelloServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>test</servlet-name>
<url-pattern>/hello/helloworld</url-pattern>
</servlet-mapping>
</web-app>
最後に、これは のソース ファイルですHelloServlet
。
// HelloServlet.java, a simple Hello World servlet.
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
public class HelloServlet extends HttpServlet
{
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
response.setContentType("text/html");
PrintWriter outputStream = response.getWriter();
outputStream.println("<html>");
outputStream.println("<head>");
outputStream.println("<title>Hello, World!</title>");
outputStream.println("</head>");
outputStream.println("<body>");
outputStream.println("Hello, world! This is my first servlet!");
outputStream.println("</body>");
outputStream.println("</html>");
outputStream.close();
}
}
問題は、クライアント側でのみhttp://localhost/hello/
(つまり、index.html
ページ) が機能することです。フォーム送信ボタンをクリックすると、http 404 エラー (リソースが利用できません) が発生します。
おそらくサーブレット マッピング、フォーム、および/またはにエラーがありますが、web.xml
それを発見するには本当に助けが必要です。