14

同じ初期ページへのサーブレットのリダイレクトについて質問があります。シナリオは次のとおりです。ユーザーがアイテムを購入したいので、金額を入力して送信するとします。フォームはサーブレットに送信され、利用可能な数量がデータベース内の利用可能な数量に対してチェックされます。したがって、注文されたアイテムの量が利用可能な量よりも多い場合、サーブレットは同じページにリダイレクトしますが、「アイテムは利用できません」などのメッセージが表示されます。だから私の質問は、このケースをどのように実装するかです。エラーメッセージとともに同じ初期ページにリダイレクトする方法。ここでは ajax を使用したくありません。

1.)エラーが発生した場合はコンテキスト属性を設定し、リダイレクト後に最初のページで再度チェックして、設定されたメッセージを表示する必要があります。

この種のイベントのベスト プラクティスは何ですか?

4

1 に答える 1

41

最も一般的で推奨されるシナリオ (Java サーベット/JSP の世界でのサーバー側の検証) は、( request スコープ内の) request 属性としていくつかのエラー メッセージを設定し、式言語を使用して JSP でこのメッセージを出力することです(以下の例を参照)。 )。エラーメッセージが設定されていない場合 - 何も表示されません。

ただし、エラー メッセージをリクエストに格納する場合は、リクエストを最初のページに転送する必要があります。リダイレクト時にリクエスト属性を設定することは適切ではありません。リダイレクトを使用すると、まったく新しいリクエストになり、リクエスト間でリクエスト属性がリセットされるためです。

リクエストを参照ページ (データを送信したページ)にリダイレクトする場合は、エラー メッセージをセッション ( session スコープ内) に保存できます。つまり、session 属性を設定します。ただし、この場合、送信されたリクエストが正しい場合は、セッションからその属性も削除する必要があります。そうしないと、セッションが存続している限りエラー メッセージが表示されるためです。

context 属性に関しては、Web アプリケーション全体 ( application scope ) およびすべてのユーザーが利用できるようにすることを目的としています。さらに、Web アプリケーションが存続している限り存続しますが、これはあなたの場合にはほとんど役に立ちません。エラー メッセージをアプリケーション属性として設定すると、間違ったデータを送信したユーザーだけでなく、すべてのユーザーに表示されます。


OK、これは原始的な例です。

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
                        http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    version="3.0">

    <display-name>Test application</display-name>

    <servlet>
        <servlet-name>Order Servlet</servlet-name>
        <servlet-class>com.example.TestOrderServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>Order Servlet</servlet-name>
        <url-pattern>/MakeOrder.do</url-pattern>
    </servlet-mapping>

</web-app>


order.jsp

<!DOCTYPE html>
<html>
<head>
    <title>Test Page</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
    <h1>Test page</h1>
    <form action="MakeOrder.do" method="post">
        <div style="color: #FF0000;">${errorMessage}</div>
        <p>Enter amount: <input type="text" name="itemAmount" /></p>
        <input type="submit" value="Submit Data" />
    </form>
</body>
</html>


オプション№1:リクエスト属性としてエラーメッセージを設定する

package com.example;

import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.ServletException;

import java.io.IOException;

public class TestOrderServlet extends HttpServlet {

    protected void doPost(HttpServletRequest request, HttpServletResponse response)
                    throws ServletException, IOException {
        int amount = 0;
        try {
            amount = Integer.parseInt(request.getParameter("itemAmount"));
        } catch (NumberFormatException e) {
            // do something or whatever
        }

        if ((amount > 0) && (amount < 100)) {   // an amount is OK
            request.getRequestDispatcher("/index.jsp").forward(request, response);
        } else {                                // invalid amount
            // Set some error message as a request attribute.
            if (amount <= 0) {
                request.setAttribute("errorMessage", "Please submit an amount of at least 1");
            } 
            if (amount > 100){
                request.setAttribute("errorMessage", "Amount of items ordered is too big. No more than 100 is currently available.");
            }
            // get back to order.jsp page using forward
            request.getRequestDispatcher("/order.jsp").forward(request, response);
        }
    }
}


オプション№2: エラーメッセージをセッション属性として設定する

TestOrderServlet.java

package com.example;

import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.ServletException;

import java.io.IOException;

public class TestOrderServlet extends HttpServlet {

    protected void doPost(HttpServletRequest request, HttpServletResponse response)
                    throws ServletException, IOException {
        int amount = 0;
        try {
            amount = Integer.parseInt(request.getParameter("itemAmount"));
        } catch (NumberFormatException e) {
            // do something or whatever
        }

        if ((amount > 0) && (amount < 100)) {   // an amount is OK
            // If the session does not have an object bound with the specified name, the removeAttribute() method does nothing.
            request.getSession().removeAttribute("errorMessage");
            request.getRequestDispatcher("/index.jsp").forward(request, response);
        } else {                                // invalid amount
            // Set some error message as a Session attribute.
            if (amount <= 0) {
                request.getSession().setAttribute("errorMessage", "Please submit an amount of at least 1");
            } 
            if (amount > 100){
                request.getSession().setAttribute("errorMessage", "Amount of items ordered is too big. No more than 100 is currently available.");
            }
            // get back to the referer page using redirect
            response.sendRedirect(request.getHeader("Referer"));
        }
    }
}

関連読書:

于 2013-02-01T02:07:28.677 に答える