我想編寫查看數據列表或單個對象的常用頁面。查看列表或單個對象的常見頁面
在控制器:
ArrayList<Table> tables;
request.setAttribute("tables", tables);
和JSP:
<table >
<c:forEach var="table" items="${tables}">
<tr>
<th><c:out value=" ${table.name}" /></th>
</tr>
</c:forEach>
</table>
顯示良好。
當我通過單一的對象 -
Table table;
request.setAttribute("table", table);
不顯示任何東西;
比我嘗試過
Table tables;
request.setAttribute("tables", tables);
我有錯誤
Don't know how to iterate over supplied "items" in <forEach>
這是一個非常簡單的例子,我的應用程序必須查看大量該對象的數據,並與兩個相似的網頁相同的代碼很愚蠢。 如何解決這個問題?將這個單個對象添加到列表中還是有另一個解決方案?
您應該必須將該單個「表」對象添加到列表中。 – adatapost 2012-01-17 10:12:30