I'm having a hard time presenting a list of showcase-type products using Java and JSP .
I can get the data, but I can not fill this table using <c:forEach>
My table would have this structure:
<table>
<c:forEach items="${produtos}" var="p">
<tr>
<td> ${p.nome } </td> <td>${p.nome } </td> <td>${p.nome }</td>
</tr>
</c:forEach>
</table>
But what is displayed is:
**produto 1 produto 1 produto 1**
**produto 2 produto 2 produto 2**
**produto 3 produto 3 produto 3**
I wanted it to look like this:
**produto 1 produto 2 produto 3**
**produto 4 produto 5 produto 6**