次のような形式の単一のJSPマークアップページを実装したいと思います。
JSP:formPay.jsp
<form action="<%=request.getContextPath() + "/Pay.do"%>" method="post" id="guest">
<table>
<tr>
<td width="150"><span class="required">*</span> First Name:</td>
<td><input type="text" name="firstname" value="<%= request.getAttribute("firstname") %>" />
</td>
</tr>
[...]
</table>
<input class="button" type="submit" value="Confirm" name="btnConfirm">
</from>
サーブレット:PayCommand.java
public class PayCommand implements Command {
@Override
public HttpServletRequest execute(HttpServletRequest request)
throws ServletException, IOException {
boolean errorWithField = false;
String paramFirstName = "";
String paramLastName = "";
String paramEmail = "";
String paramCity = "";
String paramAddress = "";
try {
paramFirstName = request.getParameter("firstname");
paramLastName = request.getParameter("lastname");
paramEmail = request.getParameter("email");
paramCity = request.getParameter("city");
paramAddress = request.getParameter("address");
} catch (Exception e) {
request.setAttribute("jsp", "formPay");
return request;
}
if (paramFirstName==null || paramFirstName.equals("")) {
errorWithField = true;
}
if (paramLastName==null || paramLastName.equals("")) {
errorWithField = true;
}
if (paramEmail==null || paramEmail.equals("")) {
errorWithField = true;
}
if (paramCity==null || paramCity.equals("")) {
errorWithField = true;
}
if (paramAddress==null || paramAddress.equals("")) {
errorWithField = true;
}
// if errorWithField==true, reload the formPay.jsp
if (errorWithField) {
request.setAttribute("message", "You have to fill out all of the fields.");
request.setAttribute("jsp", "formPay");
request.setAttribute("firstname", paramFirstName);
request.setAttribute("lastname", paramLastName);
request.setAttribute("email", paramEmail);
request.setAttribute("city", paramCity);
request.setAttribute("address", paramAddress);
} else {
// if not, go to the confirm page, everything is ok.
request.setAttribute("jsp", "confirmation");
request.setAttribute("firstname", paramFirstName);
request.setAttribute("lastname", paramLastName);
request.setAttribute("email", paramEmail);
request.setAttribute("city", paramCity);
request.setAttribute("address", paramAddress);
}
return request;
}
}
問題は、JSPを初めてロードするときに、エラーがなかったかのように解釈したいのですが、エラーが発生したため、ユーザーがフォームに入力する前でもエラーメッセージが表示されることですerrorWithField
。true
null
2番目の問題は、JSPが入力されたフィールドの値を取得しますが、JSPが最初にロードされたときを含め、そこに何もなかった場合は返されることです。この問題をどのように処理できますか?
編集Pay.do
フォームアクションはにリダイレクトされることに
注意してくださいPayCommand.java
。これはフロントコントローラーパターンで処理されます。(表示されていません)