1、首先pom檔案引入
com.github.pagehelper
pagehelper
4.1.6
2、mybatisconfig.xml 處理
<?xml version="1.0" encoding="utf-8" ?>
新增:
listgetorderconfiglist(@param("businesstype") integer businesstype, @param("capitalrule") string capitalrule, @param("checkstatus") integer checkstatus);
select * from ***;
4、**中使用,會自動執行分頁
//頁碼,每頁顯示的數量
pagehelper.startpage(pageindex,pagesize);
//全量查詢
//獲取需要的資料
pageinforuledopageinfo = new pageinfo<>(dolist);
listreslist = ruledopageinfo.getlist();
物理分頁不必擔心記憶體溢位
5、定義自己的返回bean
@data前端可以使用total,pages進行分頁public class pageinfodtoimplements serializable
PageHelper分頁外掛程式
com.github.pagehelper pagehelper 5.1.2 1.在mybatis中配置 此時並沒有spring來管理mybatis 2.使用spring容器管理 此時mybatis已交由spring容器管理 1.helperdialect 分頁外掛程式會自動檢測當前的資料庫鏈結,自...
外掛程式分頁 pageHelper
步驟 1.導包 3.serivce中,給到具體的分頁的頁碼page,每頁條數 size 4.controller中把得到的資料儲存到pageinfo。5.到達頁面在pom檔案中導包 com.github.pagehelper pagehelper 5.1.2 mysql true 在service層...
PageHelper分頁使用
pagehelper1.獲取總頁數寫法 integer pagenum 1,pagesize 3000,pagecount totalnum pagesize 1 pagesize oracle分頁 下面的分頁規律可以自行獲取值來傳參查詢 分頁規律總結 每頁顯示m條資料,查詢第n頁資料 select...