중첩된 c:forEach문에서 같은 index 사용하는 법
c:forEach
<c:forEach var="first" items="${firstList}" varStatus="status"> <c:forEach var="sec" items="${secondList[status.index]}" > </c:forEach> </c:forEach>