Spring MVC を使用してコントローラーから JSP に ArrayList オブジェクトを渡しています。JSTL (forEach) を使用して繰り返し処理したいのですが、ページを 10 ~ 20 秒ロードした後、常に Java サーバーがクラッシュします。例外をスローしていません。
「c:out」を使用して、配列を表す文字列を出力しようとすると、正常に機能します。空でない検証と同じです。プログラムが forEach に到達すると、常にクラッシュします。
以下の簡単な例
コントローラー方式
@RequestMapping(value = "/main", method = {RequestMethod.POST}, params = "create")
public ModelAndView createBranch (Branch branch) throws FxtrmServiceException, JsonGenerationException, JsonMappingException, IOException{
ModelAndView branchMV = new ModelAndView("branch");
ArrayList<String> array1 = new ArrayList<String>();
array1.add("test1");
array1.add("test2");
branchMV.addObject("alertMap1", array1);
populateAutoCompletes(branchMV);
return branchMV;
}
JSP:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %>
(...)
<c:if test="${not empty alertMap1}">
<c:forEach items="${alertMap1}" var="entry1">
<c:out value="${entry1}"/><br>
</c:forEach>
</c:if>