概述
使用<s:iterator>标签来循环遍历某一实体下的set集合数据。
1
2
3
4
5
6
7
8
9
|
public
class
User
{
int
id;
string name;
int
age;
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>
|
最后
以上就是幸福龙猫为你收集整理的使用
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复