使用<s:iterator>标签来循环遍历某一实体下的set集合数据

来源:互联网 发布:win7x64精简优化版 编辑:程序博客网 时间:2024/05/21 11:04

使用<s:iterator>标签来循环遍历某一实体下的set集合数据。

1
2
3
4
5
6
7
8
9
public class User
{
        intid;
        string name;
        intage;
        string address;
         
        //getter and setter methods;
}


1
2
3
4
5
6
7
8
9
10
Set<User> users = userDao.getAllUser();//返回所有的user对象,并封装成Set集合
Action类:
Set <User> users;
UserDao userDao;
//getter and setter
public String getAllUser()
{
        users = userDao.getAllUser();
        return"success";
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<table>
        <tr>
                th>用户ID</th>
                th>用户名</th>
                <th>用户年龄</th>
                <th>用户地址</th>
        </tr>
        <s:iterator value="users">
                <tr>
                       <th>${id}</th>
                       <th>${name}</th>
                       <th>${age}</th>
                       <th>${address}</th>
                </tr>
        </s:iterator>
原创粉丝点击