アプリケーションで検証エラーが発生したときに表示する JSP があります。サーブレットでArrayList<String>
は、リクエストにエラーを設定し、次のコードを使用して JSP に出力しようとしています。ArrayList
サーバー コンソールに出力しているのでエラーが 1 つあることはわかっていますが、出力されるのは "-" だけです。forEach
ループを正しく使用していますか?
<c:forEach var="error" items="${errors}">
<h1>-${error}</h1>
<br>
</c:forEach>
以下は、サーブレットの doPost のコードの一部です。
ArrayList<String> errors = dataValidator.getErrors();
if (errors.isEmpty()) {
String cost = dataValidator.getCost();
request.setAttribute("cost", cost);
RequestDispatcher resultsDispatcher = request.getSession().getServletContext().getRequestDispatcher("/results.jsp");
try {
resultsDispatcher.forward(request, response);
} catch (ServletException se) {
System.out.println("Servlet Exception: " + se.toString());
} catch (IOException ioe) {
System.out.println("IO Exception: " + ioe.toString());
}
} else {
request.setAttribute("errors", errors);
RequestDispatcher errorDispatcher = request.getSession().getServletContext().getRequestDispatcher("/errors.jsp");
try {
errorDispatcher.forward(request, response);
} catch (ServletException se) {
System.out.println("Servlet Exception: " + se.toString());
} catch (IOException ioe) {
System.out.println("IO Exception: " + ioe.toString());
}
}