1.建一个Webproject。加入Struts2支持。

2.创建两个实体类:

a). Mother(母亲)的Java类。

package struts.map.entity;



import java.io.Serializable;



public class Mother implements Serializable {



private static final long serialVersionUID = 1L;



private int motherId;        //母亲ID

    private String motherName;        //母亲名字

    public int getMotherId() {

return motherId;

}

public void setMotherId(int motherId) {

this.motherId = motherId;

}

public String getMotherName() {

return motherName;

}

public void setMotherName(String motherName) {

this.motherName = motherName;

}

}

b).Children(孩子)的Java类

package struts.map.entity;



import java.io.Serializable;



public class Children implements Serializable {



private static final long serialVersionUID = 1L;



private int childId;        //孩子ID

    private int motherId;        //母亲的ID

    private String childName;        //孩子名字

    

public int getChildId() {

return childId;

}

public void setChildId(int childId) {

this.childId = childId;

}

public int getMotherId() {

return motherId;

}

public void setMotherId(int motherId) {

this.motherId = motherId;

}

public String getChildName() {

return childName;

}

public void setChildName(String childName) {

this.childName = childName;

}

}

3. 创建一个Action。并创建一位母亲和她的孩子。

package struts.map.test;



import java.util.ArrayList;

import java.util.HashMap;

import java.util.List;

import java.util.Map;



import struts.map.entity.Children;

import struts.map.entity.Mother;



import com.opensymphony.xwork2.ActionSupport;



public class Struts2_Map extends ActionSupport {



private static final long serialVersionUID = 1L;



private Map<Mother,List<Children>> motherChildn;



public Map<Mother, List<Children>> getMotherChildn() {

return motherChildn;

}



@Override

public String execute() throws Exception {

/*-------------------以对象做父节点的键,List做子节点的值。的Map-----------------------*/

Mother mother = new Mother();

mother.setMotherId(10000);

mother.setMotherName("花木兰");



Children children1 = new Children();

children1.setChildId(10000);

children1.setMotherId(10000);

children1.setChildName("小花木兰1");



Children children2 = new Children();

children2.setChildId(10001);

children2.setMotherId(10000);

children2.setChildName("小花木兰2");



Children children3 = new Children();

children3.setChildId(10002);

children3.setMotherId(10000);

children3.setChildName("小花木兰3");



motherChildn = new HashMap<Mother,List<Children>>();



List<Children> childrens = new ArrayList<Children>();



childrens.add(children1);

childrens.add(children2);

childrens.add(children3);



motherChildn.put(mother,childrens);



return SUCCESS;

}

}

struts.xml

<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">

<struts>

<package name="map" extends="struts-default">

<action name="struts_map" class="struts.map.test.Struts2_Map">

<result>result.jsp</result>

</action>

</package>

</struts>  

4.创建两个页面:

a).跳转页面:

<%@ page language="java" pageEncoding="UTF-8"%>

<%

String path = request.getContextPath();

%>



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>



<title>Struts_Map</title>

<meta http-equiv="pragma" content="no-cache">

<meta http-equiv="cache-control" content="no-cache">

<meta http-equiv="expires" content="0">    

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

<meta http-equiv="description" content="This is my page">

</head>



<body>

<a href="struts_map.action">查看Map</a>

</body>

</html>

b).终于页面,也是作重要的页面:

<%@ page language="java" pageEncoding="UTF-8"%>

<%@taglib uri="/struts-tags" prefix="s" %>

<%

String path = request.getContextPath();

%>



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>



<title>Struts_Map</title>

<meta http-equiv="pragma" content="no-cache">

<meta http-equiv="cache-control" content="no-cache">

<meta http-equiv="expires" content="0">    

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

<meta http-equiv="description" content="This is my page">

</head>



<body>

<div>

<h3>-----------------以对象做父节点的键,List做子节点的值。的Map--------------------</h3>

<s:iterator var="mc" value="motherChildn">

<div>

母亲名称:<s:property value="key.motherName"/>

</div>

<s:iterator var="ch" value="value">

<div>

&nbsp;&nbsp;&nbsp;孩子名称:<s:property value="#ch.childName"/>

</div>

</s:iterator>

</s:iterator>

</div>

</body>

</html>

终于执行结果:

版权声明:本文博客原创文章,博客,未经同意,不得转载。

使用Struts2的iterator标签遍历复杂Map种类的更多相关文章

  1. struts2使用iterator标签显示嵌套Map - 云自无心水自闲 - BlogJava

    ">            <s:iterator value="dataMap.keySet()" id="class">     ...

  2. 使用struts2的iterator标签出现的错误

    错误如下所示: 代码如下所示: <body> <s:debug></s:debug> 获取list的值第一种方式 <!-- 3 获取值栈list集合数据 -- ...

  3. Struts2标签遍历List<Map<String,String>>

    <s:if test="resultList != null && resultList.size() > 0"> <s:iterator  ...

  4. c标签遍历List<Map<String, Object>> 数据格式

    <c:forEach varStatus="loop" var="dataMap" items="${dataMap}"> &l ...

  5. 转:Struts2<s:iterator value="" var="lst">中var的使用和一些标签的使用体会

    比如<s:iterator value="pmOperateList" var="lst"> <!-- iterator加上var 等价于重新 ...

  6. Struts 2的iterator标签来遍历一个含有双层List的嵌套

    今天碰到一个很有意思的问题,就是需要用Struts 2的iterator标签来遍历一个含有双层List的嵌套. 首先我们从最基础的说起,用iterator标签遍历一个List. 如果Action中有一 ...

  7. struts2标签 遍历map集合

    首先我们来构造几个map集合.    假设如下代码 都是在ssh配置环境下搭建好,(至少struts2开发环境搭建好) (1).java 代码          下面的student对象包含的字段为 ...

  8. struts2的s:iterator 标签 详解

    s:iterator 标签有3个属性:value:被迭代的集合id   :指定集合里面的元素的idstatus 迭代元素的索引1:jsp页面定义元素写法 数组或list <s:iterator ...

  9. struts2的s:iterator 标签 详解<转>

    struts2的s:iterator 可以遍历 数据栈里面的任何数组,集合等等 以下几个简单的demo: s:iterator 标签有3个属性:     value:被迭代的集合     id   : ...

随机推荐

  1. Intent七大属性之总结 分类: H1_ANDROID 2013-11-10 09:41 1074人阅读 评论(0) 收藏

    参考<疯狂android讲义>第5章 1.Intent 用于封装程序的"调用意图",不管想启动一个Acitivity.Service还是BroadcastReceive ...

  2. Windows Phone 8.1 后台任务

    Windows Phone 8.1 应用可以添加多个后台任务,以辅助应用完成某些任务. (1)新建前台应用 后台任务是依托于前台应用的,所以必须拥有一个前台应用. 该前台应用的功能很简单,就是读取文件 ...

  3. [Angular] Subscribing to router events

    In our root component, one thing we can do is subscribe to Router events, and do something related t ...

  4. [Most.js] Create Streams From Single Values With Most.js

    Most provides many means for creating streams, the simplest of which is the offunction. In this less ...

  5. Android TextView,EditText要求固定行数自动调整TextSize

    最近项目有个需求要求文本最多显示3行,继续输入则字体变小,删除已经输入的文字,那么字体变大,不管变大变小都不能超过3行.网上怎么找也找不到相关的解决方案,自己动手,丰衣足食了! 说一下算法思路,后面给 ...

  6. mysqldump --single-transaction 和--lock-tables参数详解

    mysqldump的备份原理 mysqldump在备份过程中,是采用查询备份相关表的数据,然后导出,拼接成insert语句的形式进行备份.   关于--single-transaction 和--lo ...

  7. 【hdu 3951】Coin Game

    Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s) ...

  8. 【codeforces 782B】The Meeting Place Cannot Be Changed

    [题目链接]:http://codeforces.com/contest/782/problem/B [题意] 每个人都有一个速度,只能往上走或往下走; 然后让你找一个地方,所有人都能够在t时间内到达 ...

  9. 微信小程序要调数据 微信小程序 for 循环详解

    现在要完成这样的效果: 我的代码是: <view class="l-setlist clr" > <template name="listab" ...

  10. Lettcode_104_Maximum Depth of Binary Tree

    本文研究的总结,欢迎转载,但请注明出处:http://blog.csdn.net/pistolove/article/details/41964475 Maximum Depth of Binary ...