0

作成dynamic web projectし、2つのアイテムを追加しました:

  1. index.jspこのようなページ:

    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
    <!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 action="GrettingServlet" method="POST">
            First Name: <input type="text" name="firstName" size="20"><br>
            Last Name: <input type="text" name="lastName" size="20">
            <br><br>
            <input type="submit" value="Submit">
    </form> 
    
    </body>
    </html>
    
  2. このようなデフォルトのパッケージ servlet(と呼ばれるGrettingServlet.java):

    import java.io.IOException;
    import java.io.PrintWriter;
    
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    
    public class GrettingServlet extends HttpServlet {
        private static final long serialVersionUID = 1L;
    
        public GrettingServlet() {
            super();
        }
    
        protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
            // TODO Auto-generated method stub
        }
    
        protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
            response.setContentType("text/html;charset=UTF-8");
            PrintWriter out = response.getWriter();
            String firstName = request.getParameter("firstName").toString();
            String lastName = request.getParameter("lastName").toString();
    
            out.println("<html>");
            out.println("<head>");
            out.println("<title>Servlet GreetingServlet</title>");
            out.println("</head>");
            out.println("<body>");
            out.println("<p>Welcome " + firstName + " " + lastName + "</p>");
            out.println("</body>");
            out.println("</html>");
    
            out.close();
        }
    
    }
    

フォルダtomcat6を持つようにインストールしました。Apache Software Foundation最後に、このプロジェクトのファイルを作成したいwarので、プロジェクトを選択しExport>War fileDestinationテキストwebappsでパス内のフォルダーを選択しましたC:\Program Files (x86)\Apache Software Foundation\Tomcat 6.0\webapps。と呼ばれるプロジェクトMyFirstServlet。サーバー上のフォームを表示するためindex.jspに、ブラウザに書き込みますhttp://localhost:8080/MyFirstServlet/が、メッセージが表示されます

HTTP Status 404 - /MyFirstServlet/

type Status report

message /MyFirstServlet/

description The requested resource (/MyFirstServlet/) is not available.

Apache Tomcat/6.0.35

サーブレットマッピングは次のとおりです。

<?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_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>MyFirstServlet</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>
  <servlet>
    <description>new</description>
    <display-name>GrettingServlet</display-name>
    <servlet-name>GrettingServlet</servlet-name>
    <servlet-class>GrettingServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>GrettingServlet</servlet-name>
    <url-pattern>/GrettingServlet</url-pattern>
  </servlet-mapping>
</web-app>

私はTomcatとそれをチェックしましたservice status : started

何が問題になる可能性がありますか?

4

2 に答える 2

2

与えられた例から、WebアプリケーションをMyFirstServlet.warとして(または展開されたディレクトリとして-これは違いはありません)Tomcatにデプロイし、GrettingServletをアプ​​リケーションルートにマップすることが期待されます-サーブレットに処理させたい場合根:

あなた/WEB-INF/web.xmlはこれらを持っているべきです:

<servlet>
    <servlet-name>GrettingServlet</servlet-name>
    <servlet-class>your.package.GrettingServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>GrettingServlet</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

タイプミスに注意してください:「あいさつ」(サーブレットおよびマッピング)と「あいさつ」(JSP形式)

http://localhost:8080/MyFirstServlet/GrettingServletセットアップでは、サーブレットに到達するためにブラウザをポイントする必要があります。

ルートを処理するためのJSPページを用意するというアイデアの場合は、JSPを参照するか、またはhttp://localhost:8080/MyFirstServlet/<yourJSPName>.jspを呼び出す必要があります(のセクションを参照)。この場合、あなたのアイデアは、JSPを表示してからサーブレットに投稿することです。したがって、サーブレットの仕様とマッピングが正しいことを確認してください(サーブレットマッピングとJSPフォーム属性)。index.jspdefault.jsp<welcome-file-list/>web.xmlweb.xmlaction

于 2012-06-24T11:32:23.010 に答える
1

次のようにweb.xmlを変更するだけで、機能するはずです。

<servlet>
  <servlet-name>GrettingServlet</servlet-name>
  <servlet-class>GrettingServlet</servlet-class>
</servlet>
<servlet-mapping>
  <servlet-name>GrettingServlet</servlet-name>
  <url-pattern>/GreetingServlet</url-pattern>
</servlet-mapping>

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_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>MyFirstServlet</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>
  <servlet>
    <description>new</description>
    <display-name>GrettingServlet</display-name>
    <servlet-name>GrettingServlet</servlet-name>
    <servlet-class>GrettingServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>GrettingServlet</servlet-name>
    <url-pattern>/GreetingServlet</url-pattern>
  </servlet-mapping>
</web-app>
于 2012-06-24T11:42:43.370 に答える