hibernate+struts2一对多双向关联的查询,如何把两个表的所有信息显示在jsp页面
表vote投票vid-----int主键subject-----投票主题publicclassVote{privateintvid;privateStringsubjec...
表vote 投票
vid-----int 主键
subject-----投票主题
public class Vote{
private int vid;
private String subject;
private Set item=new HashSet();
set get省略
}
<set name="item" inverse="true">
<key column="voteId" />
<one-to-many class="com.beans.Item"/>
</set>
表item------投票选项
tid-----int 主键
voteId----对应vid
itemname----选项名称
public class Item{
private int tid;
private String itemname;
private Vote vote;
set get省略
}
<many-to-one name="vote" column="voteId" class="com.beans.Vote"/>
public class VoteAction extends ActionSupport {
private List voteList;
省略set get
public String execute() throws Exception{
voteList=voteDao.getvoteList( “from Item”);
return SUCCESS;
}
}
从控制台已经看到了查询,把结果怎样显示在jsp页面 展开
vid-----int 主键
subject-----投票主题
public class Vote{
private int vid;
private String subject;
private Set item=new HashSet();
set get省略
}
<set name="item" inverse="true">
<key column="voteId" />
<one-to-many class="com.beans.Item"/>
</set>
表item------投票选项
tid-----int 主键
voteId----对应vid
itemname----选项名称
public class Item{
private int tid;
private String itemname;
private Vote vote;
set get省略
}
<many-to-one name="vote" column="voteId" class="com.beans.Vote"/>
public class VoteAction extends ActionSupport {
private List voteList;
省略set get
public String execute() throws Exception{
voteList=voteDao.getvoteList( “from Item”);
return SUCCESS;
}
}
从控制台已经看到了查询,把结果怎样显示在jsp页面 展开
展开全部
用Struts2的遍历标签。<%@ taglib uri="/struts-tags" prefix="s"%>
<s:iterator var="vote" value="%{voteList}">
<s:property value="#vote.voteId"/>
<s:property value="#vote.subject"/>
<s:iterator var="item" value="%{vote.item}">
...
<s:property value="#item.itemname"/>
<s:property value="#item.vote.subject"/>
...
</s:iterator>
</s:iterator>
<s:iterator var="vote" value="%{voteList}">
<s:property value="#vote.voteId"/>
<s:property value="#vote.subject"/>
<s:iterator var="item" value="%{vote.item}">
...
<s:property value="#item.itemname"/>
<s:property value="#item.vote.subject"/>
...
</s:iterator>
</s:iterator>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询