I have this little issue that is cracking my skull :( I have a 2D Array in my class, I send it by request to my jsp page and I have to iterate through it BUT by columns! I know I can do
<c:forEach items="${board.cells}" var="row">
<tr>
<c:forEach items="${row}" var="cell">
<td><c:out value="${cell}"/></td>
</c:forEach>
</tr>
</c:forEach>
And iterate by rows, but I can't find a way I can do that but by columns. I hope you guys understand what I'm trying to do and can help me. Greetins from Colombia and thank you!