0
我是一個新手,在struts 2中,我想從數據庫表中顯示多行到一個jsp文件。如何傳遞或設置屬性以獲取jsp頁面中的行。如何在db2中顯示多行到jsp頁面struts 2
我是一個新手,在struts 2中,我想從數據庫表中顯示多行到一個jsp文件。如何傳遞或設置屬性以獲取jsp頁面中的行。如何在db2中顯示多行到jsp頁面struts 2
這是我經常使用的方法,包括:
public class anAction {
private list displayList<RowBean>;
... the setter/getter for displayList and get the rows from JDBC resultset into the displayList somewhere in the code...
}
的RowBean是對應於結果集的一排一個JavaBean。
使用下面的代碼段提取jsp頁面上的內容:在ATTRIBUTE1 ... attributeN是一樣的,在RowBean定義的屬性
<s:iterator value="displayList">
<tr>
<td>attribute1</td><td>attribute2</td>...<td>attributeN</td>
</tr>
</s:iterator>
。
希望這會有所幫助。