struts2遍历hibernate级联查询的结果

struts2怎样遍历hibernate级联查询的结果? 
一般做法是查询产生的数据封装到map中,放到request或session,由struts2在前台输出结果,具体做法: 
例如一个item表下有一对多关系的subitem 
生成的pojo里面就包含了set的这些关系 
在hibernate取数据的时候: 
List itemall = this.itemService.findAll(); 
session = (Map) ActionContext.getContext().getSession();//get("request"); 
session.put("itemall", itemall);//把这个list放到session里 
//取出所有数据,这样,这个itemall的结构是: 
itemall 
  itemid 
  itemname 
  subitems 
返回return SUCCESS后,会跳转到指定的jsp页面 
页面使用struts2输出:

<table border="1"> <tr> <tr> <td> 分类ID </td> <td> 分类名字 </td> <td> 子类名 </td> </tr> <s:iterator value="#session.itemall"> <tr> <td> ${itemid} </td> <td> ${itemname} </td> <td> <s:iterator value="subitems"> ${subname} </s:iterator> </td> </tr> </s:iterator> </table> 

你可能感兴趣的:(struts2遍历hibernate级联查询的结果)