I have this sample table in jsfiddle.net how my table should look like
The second column can have more than one row that should coincide with the original columns. I am very confused how to achieve this using jstl <c:forEach>
This is the code I have written which prints everything in the same row because i don't have any break statements for the inner foreach
but I want something similar to what I have in jsfiddle
<c:forEach items="${abc.bcd }" var="abc">
<tr>
<td align="center"><c:out value="${abc.interval }" /></td>
<td><c:out value="${abc.operation}" /></td>
<td>
<c:forEach items="${abc.parts.info}" var="info">
<c:out value="${info.number}" />
<c:out value="${info.quantity}" />
<c:out value="${info.name}" />
</c:forEach>
</td>
</tr>
</c:forEach>