您好,登錄后才能下訂單哦!
這篇文章主要講解了“Struts+Hibernate分頁怎么實現(xiàn)”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Struts+Hibernate分頁怎么實現(xiàn)”吧!
一、在Struts中分頁有兩種結(jié)構(gòu):
1. 在Action中通過DAO查詢出所有的記錄,然后加到session或request對象中,傳到客戶端,由JSP進行分頁。這種方法對于在數(shù)據(jù)量少的時候很方便,也不影響速度。
2.在Action中每次通過DAO只查詢出一頁的記錄,再傳給JSP頁面。這種結(jié)構(gòu)對于數(shù)據(jù)量大的程序很好,但對于數(shù)據(jù)量小的情況,會增加對服務(wù)器的請求,加大服務(wù)器的負載。
二、Hibernate查詢
由于在Hibernate中直接提供了對數(shù)據(jù)庫定點定量的查詢方法,所以我采用的是第2種方法。
如:從第1萬條開始取出100條記錄
Query q = session.createQuery("from Cat as c"); q.setFirstResult(10000); q.setMaxResults(100); List l = q.list(); |
三、具體實現(xiàn)
1.Pager類
package com.jpcf.db.helper;
import java.math.*;
public class Pager { private int totalRows; //總行數(shù) private int pageSize = 10; //每頁顯示的行數(shù) private int currentPage; //當(dāng)前頁號 private int totalPages; //總頁數(shù) private int startRow; //當(dāng)前頁在數(shù)據(jù)庫中的起始行
public Pager() { }
public Pager(int _totalRows) { totalRows = _totalRows; totalPages=totalRows/pageSize; int mod=totalRows%pageSize; if(mod>0){ totalPages++; } currentPage = 1; startRow = 0; }
public int getStartRow() { return startRow; }
public int getTotalPages() { return totalPages; }
public int getCurrentPage() { return currentPage; }
public int getPageSize() { return pageSize; }
public void setTotalRows(int totalRows) { this.totalRows = totalRows; }
public void setStartRow(int startRow) { this.startRow = startRow; }
public void setTotalPages(int totalPages) { this.totalPages = totalPages; }
public void setCurrentPage(int currentPage) { this.currentPage = currentPage; }
public void setPageSize(int pageSize) { this.pageSize = pageSize; }
public int getTotalRows() { return totalRows; }
public void first() { currentPage = 1; startRow = 0; }
public void previous() { if (currentPage == 1) { return; } currentPage--; startRow = (currentPage - 1) * pageSize; }
public void next() { if (currentPage < totalPages) { currentPage++; } startRow = (currentPage - 1) * pageSize; }
public void last() { currentPage = totalPages; startRow = (currentPage - 1) * pageSize; }
public void refresh(int _currentPage) { currentPage = _currentPage; if (currentPage > totalPages) { last(); } }}
Pager類用于計算首頁、前一頁、下一頁、尾頁的在數(shù)據(jù)庫中的起始行,當(dāng)前的頁碼。
2.PagerHelp類
package com.jpcf.db.helper; import javax.servlet.http.*; public class PagerHelper { public static Pager getPager(HttpServletRequest httpServletRequest, int totalRows) { |
//定義pager對象,用于傳到頁面
Pager pager = new Pager(totalRows); |
//從Request對象中獲取當(dāng)前頁號
String currentPage = httpServletRequest.getParameter("currentPage"); |
//如果當(dāng)前頁號為空,表示為***查詢該頁
//如果不為空,則刷新pager對象,輸入當(dāng)前頁號等信息
if (currentPage != null) { pager.refresh(Integer.parseInt(currentPage)); } |
//獲取當(dāng)前執(zhí)行的方法,首頁,前一頁,后一頁,尾頁。
String pagerMethod = httpServletRequest.getParameter("pageMethod"); if (pagerMethod != null) { if (pagerMethod.equals("first")) { pager.first(); } else if (pagerMethod.equals("previous")) { pager.previous(); } else if (pagerMethod.equals("next")) { pager.next(); } else if (pagerMethod.equals("last")) { pager.last(); } } return pager; } } |
PageHelper這個類,我不用說應(yīng)該也知道用來干嘛了
3.DAO類
package com.jpcf.db.dao;
import com.jpcf.db.model.*; import com.jpcf.db.helper.HibernateUtil; import net.sf.hibernate.*; import java.util.*; import com.jpcf.db.controller.*;
public class VehiclePropertyDAO {
public Collection findWithPage(int pageSize, int startRow) throws HibernateException { Collection vehicleList = null; Transaction tx = null; try { Session session = HibernateUtil.currentSession(); tx = session.beginTransaction(); Query q = session.createQuery("from VehicleProperty vp"); q.setFirstResult(startRow); q.setMaxResults(pageSize); vehicleList = q.list(); tx.commit(); } catch (HibernateException he) { if (tx != null) { tx.rollback(); } throw he; } finally { HibernateUtil.closeSession(); } return vehicleList; }
public int getRows(String query) throws HibernateException { int totalRows = 0; Transaction tx = null; try { Session session = HibernateUtil.currentSession(); tx = session.beginTransaction(); totalRows = ((Integer) session.iterate(query).next()). intValue(); tx.commit(); } catch (HibernateException he) { if (tx != null) { tx.rollback(); } throw he; } finally { HibernateUtil.closeSession(); }
return totalRows; }
}
DAO類我就貼這些分頁需要的代碼了。
“from VehicleProperty vp”也可以用一個參數(shù)傳進來,有興趣的自己改一下吧
4.Action
下面是在Action中用到的代碼:
public ActionForward queryWithPage(ActionMapping actionMapping, ActionForm actionForm, HttpServletRequest httpServletRequest, HttpServletResponse httpServletresponse) { |
Collection clInfos = null;//用于輸出到頁面的記錄集合
int totalRows;//記錄總行數(shù)
VehiclePropertyDAO vehicleDAO = new VehiclePropertyDAO(); |
//取得當(dāng)前表中的總行數(shù)
try { totalRows = vehicleDAO.getRows("select count(*) from VehicleProperty"); } catch (Exception ex) { servlet.log(ex.toString()); return actionMapping.findForward(Constants.FAILURE); } |
//通過PagerHelper類來獲取用于輸出到頁面的pager對象
Pager pager=PagerHelper.getPager(httpServletRequest,totalRows); |
//取出從startRow開始的pageSize行記錄
try { clInfos = vehicleDAO.findWithPage(pager.getPageSize(), pager.getStartRow()); } catch (Exception ex) { servlet.log(ex.toString()); return actionMapping.findForward(Constants.FAILURE); } |
//把輸出的記錄集和pager對象保存到request對象中
httpServletRequest.setAttribute("CLINFOS", clInfos); httpServletRequest.setAttribute("PAGER", pager); return actionMapping.findForward(Constants.SUCCESS); |
查詢語句select count(*) from VehicleProperty 也可以換成你需要的任意的條件(select count(*) from VehicleProperty where ..)
5.JSP頁面使用
下面就是在JSP中的應(yīng)用了:
第頁 共頁 ="/bussiness/clInfo/queryWithPage.do?method=queryWithPage&pageMethod=first 上一頁 下一頁 尾頁 " paramName="PAGER" paramProperty="currentPage" paramId="currentPage">首頁 |
解釋一下這一行:"/bussiness/clInfo/queryWithPage.do?method=queryWithPage&pageMethod=first
method=queryWithPage 是由于我的Action繼承的是DispatchAction,需要一個method參數(shù)
pageMethod=first 是用來在PageHelper類中判斷執(zhí)行哪個操作
感謝各位的閱讀,以上就是“Struts+Hibernate分頁怎么實現(xiàn)”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Struts+Hibernate分頁怎么實現(xiàn)這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。