主页 > 知识库 > Action中ArrayList显示到JSP页面的具体实例

Action中ArrayList显示到JSP页面的具体实例

热门标签:地图标注专业和非专业 福建电销猫机器人收费 湖北地图标注公司 外呼直播语音系统 山东ai外呼电销机器人好用吗 汝南县地图标注app 甘肃销售电销机器人公司 四川正规外呼系统软件 智能电话机器人销售话术

一、UserAction中获取到的ArrayList对象填充到UserForm中,jsp页面获取UserForm的初始值。
UserAction的部分代码:

复制代码 代码如下:

private ActionForward executeManageAction(ActionMapping mapping, ActionForm form,
   HttpServletRequest request, HttpServletResponse response) {
  UserForm userForm = (UserForm)form;
  ArrayList userlist = new ArrayList();
  SessionFactory sf= new Configuration().configure().buildSessionFactory();
  Session session=sf.openSession();
  Transaction tx=session.beginTransaction();
  String sqlQuery="from User";
  Query lQuery=session.createQuery(sqlQuery);
  userlist=(ArrayList)lQuery.list();
  tx.commit();
  session.close();
  userForm.setUserlist(userlist);
  return mapping.findForward("main_user");
 }

UsrForm的部分代码:
复制代码 代码如下:

private ArrayList userlist;
 public ArrayList getUserlist(){
  return userlist;
 }
 public void setUserlist(ArrayList userlist){
  this.userlist=userlist;
 }

JSP页面代码:
复制代码 代码如下:

    table id="id1" style="border-right: darkgreen 1px solid;border-top:darkgreen 1px solid;border-left: darkgreen 1px solid;width:100%;
    border-bottom;darkgreen 1px solid;border-collapse:collapse" borderColor="darkgreen" cellSpacing="0" border="1">
    logic:notEmpty name="userForm" property="userlist">
    tr nowrap="nowrap">
    td style="width:80px;height:16px" nowrap>b>用户名/b>/td>
    td style="width:80px;height:16px" nowrap>b>角色/b>/td>
    td style="width:84px;height:16px" >b>姓名/b>/td>
    td style="width:88px;height:16px" >b>电话/b>/td>
    td style="width:73px;height:16px" >b>电子邮件/b>/td>
    td style="width:273px;height:16px" >b>动作/b>/td>
    /tr>
    logic:iterate indexId="index" id="user" name="userForm" property="userlist">
    tr>
      td noWrap style="width:80px" >bean:write name="user" property="username"/>/td>
      td noWrap style="width:80px" >bean:write name="user" property="role"/>/td>
      td noWrap style="width:80px" >bean:write name="user" property="name"/>/td>
      td noWrap style="width:80px" >bean:write name="user" property="tel"/>/td>
      td noWrap style="width:80px" >bean:write name="user" property="email"/>/td>
      td nowrap sryle="width:273px" >
      a href="javascript:submitSid(document.fview,'bean:write name="user" property="username"/>')">查看/a>
      font >||/font>
      a href="javascript:submitSid(document.fview,'bean:write name="user" property="username"/>')">更新/a>
      font >||/font>
      a href="javascript:if (confirm('删除此用户么?')){ submitSid(document.fview,'bean:write name="user" property="username"/>')}">删除/a>
      /td>/tr>
      /logic:iterate>
      /logic:notEmpty>
      /table>

二、UserAction中获取到数据ArrayList对象后,把ArrayList对象存在request中,JSP页面在获取到ArrayList对象。
UserAction部分代码:
复制代码 代码如下:

 private ActionForward executeManageAction(ActionMapping mapping, ActionForm form,
   HttpServletRequest request, HttpServletResponse response) {
  UserForm userForm = (UserForm)form;
  ArrayList userlist = new ArrayList();
  SessionFactory sf= new Configuration().configure().buildSessionFactory();
  Session session=sf.openSession();
  Transaction tx=session.beginTransaction();
  String sqlQuery="from User";
  Query lQuery=session.createQuery(sqlQuery);
  userlist=(ArrayList)lQuery.list();
  tx.commit();
  session.close();
  request.setAttribute("userlist", userlist);
  return mapping.findForward("main_user");
 }

JSP部分代码:
复制代码 代码如下:

table id="id1"  borderColor="darkgreen" cellSpacing="0" border="1">
    tr >
    td  >b>用户名/b>/td>
    td  >b>角色/b>/td>
    td  >b>姓名/b>/td>
    td  >b>电话/b>/td>
    td >b>电子邮件/b>/td>
    td >b>动作/b>/td>
    /tr>
     logic:present name="userlist">
    logic:iterate indexId="index" id="user" name="userlist" >
    tr>
      td   >bean:write name="user" property="username"/>/td>
      td   >bean:write name="user" property="role"/>/td>
      td  >bean:write name="user" property="name"/>/td>
      td   >bean:write name="user" property="tel"/>/td>
      td >bean:write name="user" property="email"/>/td>
      td  >
      a href="javascript:submitSid(document.fview,'bean:write name="user" property="username"/>')">查看/a>
      font >||/font>
      a href="javascript:submitSid(document.fview,'bean:write name="user" property="username"/>')">更新/a>
      font >||/font>
      a href="javascript:if (confirm('删除此用户么?')){ submitSid(document.fview,'bean:write name="user" property="username"/>')}">删除/a>
      /td>/tr>
      /logic:iterate>
      /logic:present>
      /table>

标签:白银 吴忠 梅州 肇庆 黔东 昌都 临沂 南充

巨人网络通讯声明:本文标题《Action中ArrayList显示到JSP页面的具体实例》,本文关键词  Action,中,ArrayList,显示,到,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《Action中ArrayList显示到JSP页面的具体实例》相关的同类信息!
  • 本页收集关于Action中ArrayList显示到JSP页面的具体实例的相关信息资讯供网民参考!
  • 推荐文章