博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一段可以使用的 hibernate获得对象->action存入List->jsp页面用<s:iterator>迭代的代码...
阅读量:5173 次
发布时间:2019-06-13

本文共 2161 字,大约阅读时间需要 7 分钟。

SelectAction.java

1 @SuppressWarnings("serial") 2 @Component("selectAction") 3 @Scope("prototype") 4 public class SelectAction extends BaseAction{ 5  6     private ISelectService selectService; 7      8     @Resource 9     public void setSelectService(ISelectService selectService) {10         this.selectService = selectService;11     }12     13     public List
reportlist; 14 public List
getReportlist(){15 return reportlist;16 }17 public void setReportlist(List
reportlist) {18 this.reportlist = reportlist;19 }20 21 public String toReportGetter()throws Exception22 {23 24 try {25 26 List
list = new ArrayList
();27 28 int i = 1;29 int max = selectService.getReportCount();30 31 while(i <= max){32 ReportFormBeans reportFormBean = new ReportFormBeans();33 BeanUtils.copyProperties(reportFormBean , selectService.getReport(i));34 list.add(reportFormBean); 35 36 for (int j = 0; j < list.size(); j++) {37 System.out.println(list.get(j));38 }39 40 i++;41 } 42 this.setReportlist(list);43 return SUCCESS; 44 } catch (Exception e) {45 e.printStackTrace();46 System.out.println("ERROR!");47 return INPUT;48 }49 }50 }

select.jsp

1 <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 <%@ taglib prefix="s" uri="/struts-tags" %> 3  4 <% 5 String path = request.getContextPath(); 6 String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 7 %> 8  9 10 11   12     13     
14 注册页面15
16
17
18
19
20
23 24 25
26 27
28 29
30
31 32

 

转载于:https://www.cnblogs.com/liuxiaoke/p/3457165.html

你可能感兴趣的文章
Vue笔记:使用 axios 发送请求
查看>>
富文本编辑器 - RichEditor
查看>>
java webcontroller访问时报415错误
查看>>
qcow2、raw、vmdk等镜像格式
查看>>
Jzoj5455【NOIP2017提高A组冲刺11.6】拆网线
查看>>
特定字符序列的判断(1028)
查看>>
华为面试
查看>>
平衡二叉树(AVL Tree)
查看>>
【BZOJ3295】[Cqoi2011]动态逆序对 cdq分治
查看>>
【CF799E】Aquarium decoration 线段树
查看>>
大运飞天 鲲鹏展翅
查看>>
从ECMA到W3C
查看>>
软件工程--第十六周学习进度
查看>>
yii2 ActiveRecord多表关联以及多表关联搜索的实现
查看>>
搜狗输入法安装--ubuntu
查看>>
ps/2接口键盘的输入及显示
查看>>
Swift———a Glance(极客学院)笔记
查看>>
【poj3294-不小于k个字符串中最长公共子串】后缀数组
查看>>
java如何获取其它用户登录的真是IP地址
查看>>
Jquery通过指定层次关系获取元素
查看>>