免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1498 | 回复: 0
打印 上一主题 下一主题

Spring Jdbc的分页操作 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-21 08:44 |只看该作者 |倒序浏览
根据前面的一个代码Page和PaginationHelper类可以查出第几页的数据返回一个List
Servlet层:
  1. // 分析当前页码
  2.         String pageString=req.getParameter("page");
  3.         if(pageString == null || pageString.length() == 0) {
  4.         pageString = "1";
  5.         }
  6.         int currentPage= 0 ;
  7.         try {
  8.         currentPage = Integer.parseInt(pageString);// 当前页码
  9.         } catch(Exception e) {}
  10.         if(currentPage == 0) {
  11.             currentPage = 1;
  12.         }
  13.         int pageSize = 30;//每页显示的数据数
  14.         
  15.         PaginationHelper<EipSms> ph = new PaginationHelper<EipSms>();
  16.      List<EipSms> ls=new ArrayList<EipSms>();
  17.      Page<EipSms> p=ph.fetchPage(
  18.                 jdbc,
  19.                 "SELECT COUNT(*) FROM EIP_SMS WHERE CUSERID=? AND STATUS='1'",
  20.                 "SELECT PK_EIP_SMS,RUSER,CONTENT,CTIME FROM EIP_SMS WHERE CUSERID=? AND STATUS='1'",
  21.                 new Object[]{pageUser.getUserID()},
  22.                 currentPage,
  23.                 pageSize,
  24.                 new ParameterizedRowMapper<EipSms>() {
  25.                     public EipSms mapRow(ResultSet rs, int i) throws SQLException {
  26.                         return new EipSms(rs.getString(1),rs.getString(2),rs.getString(3),rs.getString(4));
  27.                     }
  28.                 }
  29.         );
  30.      ls=p.getPageItems();
  31.      req.getSession().setAttribute("ls",ls);// 保存列表
  32.      req.getSession().setAttribute("totalPage", p.getPagesAvailable());// 保存总页数
  33.      req.getSession().setAttribute("currentPage", currentPage);// 保存当前页码
  34.     
  35.      res.sendRedirect("resources/sms/sms_draft.jsp");

表现层:
  1. <td>
  2.                 <%-- 输出页面跳转代码, 分链接和静态文字两种 --%>
  3.                 <c:if test="${currentPage > 1}">
  4.                 [ <a href="${pageContext.request.contextPath}/showsms?type=draft&page=${currentPage-1}">上一页</a> ]
  5.                 </c:if>
  6.                 <c:if test="${currentPage <= 1}">
  7.                 [ 上一页 ]
  8.                 </c:if>
  9.                 <c:if test="${currentPage < totalPage}">
  10.                 [ <a href="${pageContext.request.contextPath}/showsms?type=draft&page=${currentPage+1}">下一页</a> ]
  11.                 </c:if>
  12.                 <c:if test="${currentPage >= totalPage}">
  13.                 [ 下一页 ]
  14.                 </c:if>
  15.                 <%-- 输出 JavaScript 跳转代码 --%>
  16.                 <script>
  17.                 // 页面跳转函数
  18.                 // 参数: 包含页码的表单元素,例如输入框,下拉框等
  19.                 function jumpPage(input) {
  20.                 // 页码相同就不做跳转
  21.                 if(input.value == ${currentPage}) {
  22.                     return;
  23.                 }
  24.                 var newUrl = "${pageContext.request.contextPath}/showsms?type=draft&page=" + input.value;
  25.                     document.location = newUrl;
  26.                 }
  27.                 </script>
  28.                 转到
  29.                 <!-- 输出 HTML SELECT 元素, 并选中当前页面编码 -->
  30.                 <select onchange='jumpPage(this);'>
  31.                 <c:forEach var="i" begin="1" end="${totalPage}">
  32.                 <option value="${i}"
  33.                 <c:if test="${currentPage == i}">
  34.                 selected
  35.                 </c:if>
  36.                 >第${i}</option>
  37.                 </c:forEach>
  38.                 </select>
  39.                 </td>



  1. //循环输出list
  2. <c:forEach items="${ls}" var="sms" >
  3.                     <tr>
  4.                     <td></td>
  5.                     <td><input type="checkbox" name="$$SelectDoc" value="${sms.pk_eip_sms}"></td>
  6.                     <td><font size="2"><a href="" target="_blank">${sms.content}</a></font></td>
  7.                     <td><font size="2">${sms.ctime}</font></td>
  8.                     <td>${sms.ruser}</td>
  9.                     </tr>
  10.                 </c:forEach>
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP