Question

Is there any way to automate process of rendering tables with Spring MVC? I'm looking for some mechanism for automated rendering List of POJO's on JSP instead of manual writing code like this:

<c:if test="${not empty objects}">
    <table>
        <c:forEach var="o" items="${objects}">
            <tr>
                <td>${o.id}</td>
                <td>${o.name}</td>
            </tr>
        </c:forEach>
    </table>
</c:if>

Probably something like this:

<awesometaglib:smarttable data="${listOfPOJOs}"/>
Était-ce utile?

La solution

You can try DisplayTag or any other library.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top