您好,登錄后才能下訂單哦!
使用Mybatis Plus如何整合PageHelper實(shí)現(xiàn)分頁?相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
Mapper Plus自帶分頁P(yáng)aginationInterceptor對(duì)象,雖然說目前沒有什么問題,并且使用簡(jiǎn)單,但是個(gè)人感覺有個(gè)弊端:目前個(gè)人使用中,想要用Mapper Plus自帶的分頁功能的話需要在mapper對(duì)象中傳入一個(gè)Page對(duì)象才可以實(shí)現(xiàn)分頁,這樣耦合度是不是太高了一點(diǎn),從web到service到mapper,這個(gè)Page對(duì)象一直都在傳入,這樣的使用讓人感覺有點(diǎn)麻煩,但是Mapper Plus不得不說真的是很好用的。
PageHelper用過的人多多少少了解,這個(gè)框架要實(shí)現(xiàn)分頁只要一行代碼,所以我的想法是將兩個(gè)好用的框架整合在一起。
1. pom引入
<dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2.3</version> <exclusions> <exclusion> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> </exclusion> <exclusion> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> </exclusion> </exclusions> </dependency> <!-- Mybatis-plus --> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.1.0</version> </dependency>
我用的是Spring Boot框架,在pom中直接引入Mapper Plus和PageHelper就可以了;而使用的PageHelper包是整合SpringBoot的包,個(gè)人感覺這種版本的只需要在配置文件中配置即可開箱試用非常便捷,但是這個(gè)包必須要去掉內(nèi)置的mybatis依賴,不然會(huì)和Mapper Plus中的版本不一致
2. 配置文件
Mapper Plus的配置我就貼出來了,主要貼出PageHelper的配置
############# 分頁插件PageHelper配置 ############# pagehelper.helper-dialect=mysql pagehelper.reasonable=true pagehelper.support-methods-arguments=true pagehelper.pageSizeZero=true pagehelper.params=count=countSql
3. 使用
使用起來很方便,我用一個(gè)controller鐘的list接口作為示范
@GetMapping("/list") public Result list(@ParamCheck(notNull = false) Integer projectType, @ParamCheck(notNull = false) Integer projectStatus, @ParamCheck(notNull = false) String departmentId, @ParamCheck(notNull = false) String name, @ParamCheck(defaultValue = Constant.PAGE) Integer page, @ParamCheck(defaultValue = Constant.SIZE) Integer size){ if (page > 0 && size > 0){ PageHelper.startPage(page, size); } List<OaProjectDTO> list = projectService.list(projectType, projectStatus, departmentId, name); PageInfo pageInfo = new PageInfo<>(list); return ResultUtil.success(pageInfo); }
PageHelper.startPage(page, size);這一行代碼就實(shí)現(xiàn)了分頁,而我做了一個(gè)判斷的原因是,如若數(shù)據(jù)是要不分頁展示所有的,那就不需要啟動(dòng)這行代碼。
最后通PageInfo對(duì)象將數(shù)據(jù)包裝返回即可。
看完上述內(nèi)容,你們掌握使用Mybatis Plus如何整合PageHelper實(shí)現(xiàn)分頁的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。