PageHelper分頁外掛程式的使用方法

2021-10-10 07:06:18 字數 406 閱讀 2520

第零步:新增pagehelper的相關jar包,如果只使用mybatis框架的話,只需要在mybatis的配置檔案中進行相關的配置

<?xml version="1.0" encoding="utf-8"?>

//連線資料庫的相關配置

第一步:呼叫startpage(當前頁,每頁多少條資料);切記一定要放在要進行限制的執行sql方法的頭部。

pagehelper.startpage(cp,5);

第二步:獲取資料庫搜尋的集合資料結果,list《實體類》型別 list;

第三步:使用pageinfo物件來接收分頁後的結果。

pageinfopageinfo = new  pageinfo(selectbyexample);

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

com.github.pagehelper pagehelper 4.1.0 啟動位址,埠 server.port 8088 資料庫連線池配置 spring.datasource.type com.alibaba.druid.pool.druiddatasource spring.datasourc...