Domanda

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}"/>
È stato utile?

Soluzione

You can try DisplayTag or any other library.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top