我是靠谱客的博主 幸福龙猫,最近开发中收集的这篇文章主要介绍使用标签来循环遍历某一实体下的set集合数据,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

使用<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>

最后

以上就是幸福龙猫为你收集整理的使用标签来循环遍历某一实体下的set集合数据的全部内容,希望文章能够帮你解决使用标签来循环遍历某一实体下的set集合数据所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(82)

评论列表共有 0 条评论

立即
投稿
返回
顶部