私はJSPに取り組んでおり、このエラー「Unterminated <c:forEach tag」で立ち往生しています
これは contentStatis.jsp の関連部分です
<tbody>
<br><c:forEach var="contentStatis" items="${resultcount}" >
<td align="center"><c:out value="${contentStatis.dtm}" /></td>
<td align="center"><c:out value="${contentStatis.StudentPkg}" /></td>
<td align="center"><c:out value="${contentStatis.Shared}" /></td>
<td align="center"><c:out value="${contentStatis.NonShared}" /></td>
</tbody>
これは、Controller.java の関連部分です。
List<ContentStatis> result = ContentStatisRepository.statis(maps);
List<ContentStatis> resultcount = ContentStatisRepository.mnote(maps);
Pagination<ContentStatis> resultList = PaginationUtil.getPaginationList(result, condition, (long)result.size(), Order.DESC);
model.addAttribute("result", result);
model.addAttribute("condition", condition);
model.addAttribute("resultList", resultList);
model.addAttribute("resultcount", resultcount);
}
return "admin/statisMng/contentStatis";
そして、これはRepository.javaの関連部分です
@Statement(id="ContentStatis.mnote")
public List<ContentStatis> mnote(Map<String, Object> maps);
問題がどこにあるのか誰にもわかりますか?jspを実行すると、エラーが発生します
"/WEB-INF/views/admin/statisMng/contentStatis.jsp(459,0) 未終了 <c:forEach タグ"