转载

浅谈JSP下的Hibernate分页技术

这是我知道的代码最少且最简洁的一种Hibernate分页技术了,自己懒,所以拼命减少代码量,呵呵。下面用人能看得懂的语言细说一下,关于Hibernate的分页技术,无外乎两种:

1. 从数据库中取得记录,在内存中再划分。但如果遇到记录数很大的时候效率很成问题。

2. 采用Hibernate的物理分页,每次只是取一页。从客户端传进来的是第几页和每页多少条记录,要首先查询符合记录的总记录数,再根据总记录数和当前页,每页记录数可以算出要取的是数据库中的第几条记录。但2次查询不可避免了。

所以总结了两种方式的优劣,如果数据量不是非常大的话(百万以上),采用第一种方法,否则可选择第二种。

由于我要操作的数据库信息量没有达到大的标准,所以我采用了第一种方法,下面细说。

首先看一下我的一个action:

public ActionForward queryZcDoc(ActionMapping mapping, ActionForm form,     HttpServletRequest request, HttpServletResponse response)  {    IZcDocService zcDocService=(IZcDocService)           Application.getInstance().getBean("zcDocServiceProxy");    List docList=zcDocService.queryZcDoc();    request.setAttribute("doc", subMessList);    return mapping.findForward("queryDoc"); } 

很简单的代码,就是查询数据,扔到一个List里面,然后setAttribute,再在jsp页面显示就可以了。

接下来谈分页,考虑到了简洁性和通用性,我把分页的代码单独封装到了一个类里面去,下面看看这个类:

public class Fenye {
public List fenye(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response){

List list=(ArrayList) request.getAttribute("list");
/*

这里有人可能就看不懂了,为什么要带这些参数?因为我上面的action方法是分页之前的方法,所以不能看出来。

下面贴一下用到分页之后的action方法:

public ActionForward queryZcDoc(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {

IZcDocService zcDocService=(IZcDocService)Application.getInstance().
getBean("zcDocServiceProxy");
List docList=zcDocService.queryZcDoc();

request.setAttribute("list", docList);
List subMessList=new Fenye().fenye(mapping, form, request, response);

request.setAttribute("doc", subMessList);
return mapping.findForward("queryDoc");
}

和上面的一比较,其实就多了两行代码,为的就是保持页面的简洁性而使用调用的方法,然后再将需要的数据返回。

那接着往下看:

*/   List subMessList=null;  //这个到时候存的是用分页技术之后的要显示的记录     int showCount =5;     //每页显示的记录数。     int showPage = 1;     //当前显示页码数。     int size =list.size();     //所取得的数据的总条数。     int pageCount = (size-1)/showCount + 1;  //需要显示的总页数     if(size

到了这里,java代码就写完了,不多吧加括号一共33行。接下来就要到jsp里面去显示了。也是为了页面的整洁和通用性,我把分页显示的东东放到了一个jsp里面。下面看这个jsp:

<%@ page language="java" pageEncoding="gb18030"%>
 <div align=center>
<br>

<%
String method=request.getParameter("method");

method这个参数呢,是要区别对待具体那个action的那个方法

String action=request.getParameter("action");

action这个参数的作用,看下面就知道了

 int showPage = ((Integer)(request.getAttribute("showPage"))).intValue();
int size = ((Integer)(request.getAttribute("size"))).intValue();
int pageCount = ((Integer)(request.getAttribute("pageCount"))).intValue();
int page1=showPage-1;
int page2=showPage+1;
int LastPage=pageCount;

%>

<%    
out.println("总共有"+size+"条记录&nbsp");

         out.println("总共有"+pageCount+"页&nbsp");
out.println("当前是第"+showPage+"页&nbsp");
if(showPage > 1)
{
out.println("<a href='"+action+".do?method="+method+"&page=1'>第一页</a>");    
}
else
{
out.println("第一页");
}
%>    

                  <%
if(showPage > 1)    
{

        out.println("<a href='"+action+".do?method="+method+"&page="+page1+"'>上一页</a>");    
}

      else
{                     

        out.println("上一页");    

             }
%>

                <%
if(showPage < pageCount)    
{
out.println("<a href='"+action+".do?method="+method+"&page="+page2+"'>下一页</a>");    
}
else
{
out.println("下一页");    

%>

<%
if(showPage<pageCount)    
{

                    out.println("<a href='"+action+".do?method="+method+"&page="+LastPage+"'>尾页</a>");    
}

                  else    
{

      out.println("尾页");

                  }
%>

</div>

关于这个jsp的代码,不用解释太多了吧。再有就是具体的显示页面中,用<jsp:include page="../fenye.jsp?action=link"></jsp:include>语句将它包含到相应为止就可以了。

正文到此结束
Loading...