您好,登錄后才能下訂單哦!
這篇文章給大家介紹SpringBoot中怎么利用Mybatis實現(xiàn)一個分頁插件,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
1、導(dǎo)入分頁插件包和jpa包
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2.5</version> </dependency>
2、增加分頁配置
# 主鍵自增回寫方法,默認(rèn)值MYSQL,詳細(xì)說明請看文檔mapper: identity: MYSQL# 設(shè)置 insert 和 update 中,是否判斷字符串類型!='' not-empty: true# 枚舉按簡單類型處理 enum-as-simple-type: true######### 分頁插件 ##########pagehelper: helper-dialect: mysql params: count: countSql reasonable: false support-methods-arguments: true
配置說明:
mapper.enum-as-simple-type: 枚舉按簡單類型處理,如果有枚舉字段則需要加上該配置才會做映射 mapper.not-empty: 設(shè)置以后,會去判斷 insert 和 update 中符串類型!=''“ pagehelper.reasonable: 分頁合理化參數(shù),默認(rèn)值為false。當(dāng)該參數(shù)設(shè)置為 true 時,pageNum<=0 時會查詢第一頁, pageNum>pages(超過總數(shù)時),會查詢最后一頁。默認(rèn)false 時,直接根據(jù)參數(shù)進(jìn)行查詢。 support-methods-arguments: 支持通過 Mapper 接口參數(shù)來傳遞分頁參數(shù),默認(rèn)值false,分頁插件會從查詢方法的參數(shù)值中,自動根據(jù)上面 params 配置的字段中取值,查找到合適的值時就會自動分頁。
3、使用插件進(jìn)行分頁查詢
public PageInfo<User> selectByUsername(String username,int limit, int page){ PageHelper.startPage(page, limit).setOrderBy("id desc"); PageInfo<User> userPageInfo = new PageInfo<>(this.userMapper.selectByuserName(username)); return userPageInfo; }
關(guān)于SpringBoot中怎么利用Mybatis實現(xiàn)一個分頁插件就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。