我在下面的链接中解决了这个问题。
结果如下所示。
model.addAttribute("commentList", commentList);
commentList = [{board_comm_writer=Seongwon, board_comm_content=TEST, cocList=[{board_c_of_c_writer=Seongwon, board_c_of_c_content=hi everywon}]
我想用jstl表达cocList的值。
由于我搜索了这种方法......
<c:forEach items="${commentList}" var="cL">
${cL.cocList.board_c_of_c_content}
</c:forEach>
但这似乎不是正确的方法。
要显示cocList,我该怎么做?
答案 0 :(得分:0)
我解决了这个问题。
<c:forEach items="${commentList}" var="cL">
<c:forEach items="${cL.cocList} var="cLc">
${cLc.board_c_of_c_content}
</c:forEach>
</c:forEach>