当前位置: 代码迷 >> J2EE >> JSP显示数据,在线=解决办法
  详细解决方案

JSP显示数据,在线=解决办法

热度:285   发布时间:2016-04-22 03:30:16.0
JSP显示数据,在线=
JSP中显示底层代码中的集合,我Action和from中改怎么写啊 。
请大虾们写的详细点! 谢谢!

------解决方案--------------------
可以把集合放到request中
action中这么写
Collection<Xxx> xxxs = this.getXxxService().findXxxs(...);
request.setAttribute("xxxs", xxxs);
页面用迭代就行了
<logic:iterate id="item" name="xxxs" scope="request" type="com....Xxx">
</logic:iterate>

不用form,否则你也可以在form中声明Collection<Xxx> xxxs

然后再action中给他赋值
  相关解决方案