91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java web如何實現分頁功能

發布時間:2021-05-24 11:27:15 來源:億速云 閱讀:255 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關java web如何實現分頁功能,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

現在很多流行的框架,都可以很快的把分頁效果做出來,但是作為一名程序員你必須得知道手寫分頁的流程:

場景效果:

java web如何實現分頁功能

一、分頁的思路

首先我們得知道寫分頁代碼的思路,保持思路清晰,才能行云流水的去寫代碼,其實不管是在寫什么代碼,思路,思想特別重要,先想好再動手,就會事半功倍!

先來分析SQL語句實現

Select * from product limit 0 ,5
Select * from product limit 5 ,5
Select * from product limit 10 ,5
Select * from product limit 15 ,5

#當前頁 起始值 每頁數據大小
1 0 5
2 5 5
3 10 5
4 15 5

結論:

(1)(當前頁-1)*(每頁數量)=起始值
(2)要想實現分頁,向服務端發起請求的時候,必須傳遞當前頁。

二、創建PageBean存放數據

這時候我們需要封裝一個包裝類,來封裝我們的分頁數據

package cn.itcast.store.domain;
import java.util.List;
/**
 * 存放分頁相關的數據
 *
 * @author yechengchao
 */
public class PageModel {
 //基本屬性
 /**當前頁數,由用戶指定 */
 private int currentPageNum;
 /**每頁顯示的條數,可以由用戶指定每頁顯示多少 */
 private int pageSize =5;
 /**總記錄條數,數據庫查出來的 */
 private int totalRecords;
 /**總頁數,計算出來的 */
 private int totalPageNum;
 /**每頁開始記錄的索引,計算出來的 (當前頁-1)*(每頁數量)=起始值 */
 private int startIndex;
 /**上一頁 */
 private int prePageNum;
 /**下一頁 */
 private int nextPageNum;
 /**已經分好頁的結果集,存放我們查出來的結果集*/
 private List list;
 
 /**擴展屬性
 一共每頁顯示9個頁碼按鈕*/
 /**開始頁碼*/
 private int startPage;
 /**結束頁碼*/
 private int endPage;
 
 /**完善屬性*/
 private String url;
 

 /**要想使用我的分頁,必須給我兩個參數。一個是要看哪一頁,另一個是總記錄條數*/
 public PageModel(int currentPageNum,int totalRecords,int pageSize){
 this.currentPageNum = currentPageNum;
 this.totalRecords = totalRecords;
 this.pageSize=pageSize;
 
 //計算查詢記錄的開始索引
 startIndex = (currentPageNum-1)*pageSize;
 //計算總頁數
 totalPageNum = totalRecords%pageSize==0?(totalRecords/pageSize):(totalRecords/pageSize+1);
 
 //5
 startPage = currentPageNum - 4;
 //結束頁碼
 endPage = currentPageNum + 4;
 //看看總頁數夠不夠9頁
 if(totalPageNum>9){
 //超過了9頁
 if(startPage < 1){
 startPage = 1;
 endPage = startPage+8;
 }
 if(endPage>totalPageNum){
 endPage = totalPageNum;
 startPage = endPage-8;
 }
 }else{
 //不夠9頁
 startPage = 1;
 endPage = totalPageNum;
 }
 }

 public String getUrl() {
 return url;
 }

 public void setUrl(String url) {
 this.url = url;
 }
 
 public int getStartPage() {
 return startPage;
 }

 public void setStartPage(int startPage) {
 this.startPage = startPage;
 }

 public int getEndPage() {
 return endPage;
 }
 public void setEndPage(int endPage) {
 this.endPage = endPage;
 }
 public int getPrePageNum() {
 prePageNum = currentPageNum-1;
 if(prePageNum<1){
 prePageNum = 1;
 }
 return prePageNum;
 }
 public int getNextPageNum() {
 nextPageNum = currentPageNum+1;
 if(nextPageNum>totalPageNum){
 nextPageNum = totalPageNum;
 }
 return nextPageNum;
 }
 public int getCurrentPageNum() {
 return currentPageNum;
 }
 public void setCurrentPageNum(int currentPageNum) {
 this.currentPageNum = currentPageNum;
 }
 public int getPageSize() {
 return pageSize;
 }
 public void setPageSize(int pageSize) {
 this.pageSize = pageSize;
 }
 public int getTotalRecords() {
 return totalRecords;
 }
 public void setTotalRecords(int totalRecords) {
 this.totalRecords = totalRecords;
 }
 public int getTotalPageNum() {
 return totalPageNum;
 }
 public void setTotalPageNum(int totalPageNum) {
 this.totalPageNum = totalPageNum;
 }
 public int getStartIndex() {
 return startIndex;
 }
 public void setStartIndex(int startIndex) {
 this.startIndex = startIndex;
 }
 public void setPrePageNum(int prePageNum) {
 this.prePageNum = prePageNum;
 }
 public void setNextPageNum(int nextPageNum) {
 this.nextPageNum = nextPageNum;
 }
 public List getList() {
 return list;
 }
 public void setList(List list) {
 this.list = list;
 }
}

三、在servlet編寫控制代碼

首先用戶發送請求,帶上當前頁數,在這表調用業務層的代碼,把以分頁的形式查詢商品,再把商品查詢出來之后賦值給我們創建的pageModel對象,這時候把這個對象傳到前端頁面,就可以把值取出來,實現分頁。

public String findProductByCidWithPage(HttpServletRequest request, HttpServletResponse response) throws Exception {
 //獲取cid,num
 String cid=request.getParameter("cid");
 int curNum=Integer.parseInt(request.getParameter("num"));
 //調用業務層的功能:以分頁的形式查詢當前頁類別下商品信息
 //返回PageModel對象(1當前頁商品信息2分頁3 url)
 ProductService productService=new ProductServiceImp();
 PageModel pm=productService.findProductByCidWithPage(cid,curNum);
 //將PageModel對象放入request
 request.setAttribute("page", pm);
 //轉發到/jsp/product_list.jsp
 return "/jsp/product_list.jsp";
 }

四、業務層service編寫業務邏輯代碼

當調用業務層的業務邏輯的時候,在這邊我們是通過Dao層把我們要查詢的商品查詢出來用一個list接收,再傳給pageModel的屬性list,這時候就把整個pageModel對象傳回去,這邊主要是調用Dao層查詢和 關聯集合,關聯URL。

public PageModel findProductByCidWithPage(String cid, int curNum) throws Exception {
 //1 創建pageModel對象 目的:計算分頁參數
 
 //統計當前分類下商品的個數 select count(*) from product where cid=?
 int totalRecords=productDao.findtotalRecords(cid);
 PageModel pageModel=new PageModel(curNum, totalRecords, 12);
 //2.關聯集合 select * form product where cid=? limit ?,?
 List list=productDao.findProductByCidWithPage(cid,pageModel.getStartIndex(),pageModel.getPageSize());
 pageModel.setList(list);
 //3.關聯url
 pageModel.setUrl("ProductServlet?method=findProductByCidWithPage&cid="+cid);
 return pageModel;
 }

五、Dao層操作數據庫

為什么我們要在最開始分析sql語句,最根源就是在這邊查詢數據庫,我們需要把起始頁和分頁大小傳進去。

public List findProductByCidWithPage(String cid, int startIndex, int pageSize) throws Exception {
 String sql="select * from product where cid=? limit ?,?";
 QueryRunner qr=new QueryRunner(JDBCUtils.getDataSource());
 return qr.query(sql, new BeanListHandler<Product>(Product.class),cid,startIndex,pageSize);
 }

六、前端頁面,顯示分頁

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
 <%--分頁顯示的開始 --%>
 <div >
 共${page.totalPageNum}頁/第${page.currentPageNum}頁
 
 <a href="${pageContext.request.contextPath}/${page.url}&num=1" rel="external nofollow" >首頁</a>
 <a href="${pageContext.request.contextPath}/${page.url}&num=${page.prePageNum}" rel="external nofollow" >上一頁</a>
 <%--顯示的頁碼,使用forEach遍歷顯示的頁面 --%>
 <c:forEach begin="${page.startPage}" end="${page.endPage}" var="pagenum">
 <a href="${pageContext.request.contextPath}/${page.url}&num=${pagenum}" rel="external nofollow" >${pagenum}</a>
 </c:forEach>
 
 <a href="${pageContext.request.contextPath}/${page.url}&num=${page.nextPageNum}" rel="external nofollow" >下一頁</a>
 <a href="${pageContext.request.contextPath}/${page.url}&num=${page.totalPageNum}" rel="external nofollow" >末頁</a>
 <input type="text" id="pagenum" name="pagenum" size="1"/><input type="button" value="前往" onclick="jump()" />
 <script type="text/javascript">
 function jump(){
 var totalpage = ${page.totalPageNum};
 var pagenum = document.getElementById("pagenum").value;
 //判斷輸入的是一個數字
 var reg =/^[1-9][0-9]{0,1}$/;
 if(!reg.test(pagenum)){
 //不是一個有效數字
 alert("請輸入符合規定的數字");
 return ;
 }
 //判斷輸入的數字不能大于總頁數
 if(parseInt(pagenum)>parseInt(totalpage)){
 //超過了總頁數
 alert("不能大于總頁數");
 return;
 }
 //轉向分頁顯示的Servlet
 window.location.href="${pageContext.request.contextPath}/${page.url}&num=" rel="external nofollow" +pagenum;
 }
 </script>
 </div>
 <%--分頁顯示的結束--%>

因為將我們所有需要的數據都封裝在了pageModel中,pageModel對象又在request域中,所以在jsp頁面中,我們只需要拿到我們所需要的數據,進行顯示即可,構造導航圖需要注意的有一點,邏輯要搞清楚,想要顯示什么不想顯示什么,全屏自己控制了,只需要記得一點,在請求Servlet時,需要把請求的頁碼交給服務器。不然服務器不知道你要獲得第幾頁的數據。

關于“java web如何實現分頁功能”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁蒗| 克什克腾旗| 平凉市| 龙口市| 临清市| 平潭县| 河池市| 苏尼特左旗| 和硕县| 宾川县| 宜都市| 崇礼县| 施秉县| 团风县| 冀州市| 桑日县| 苍山县| 鲁甸县| 怀安县| 阜宁县| 大邑县| 岫岩| 东港市| 沙坪坝区| 邢台市| 临澧县| 铜梁县| 清新县| 宜章县| 广东省| 方城县| 马龙县| 宜阳县| 东台市| 新营市| 且末县| 潜江市| 德惠市| 个旧市| 浦东新区| 融水|