您好,登錄后才能下訂單哦!
使用Mybatis Plus如何整合PageHelper實現分頁?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
Mapper Plus自帶分頁PaginationInterceptor對象,雖然說目前沒有什么問題,并且使用簡單,但是個人感覺有個弊端:目前個人使用中,想要用Mapper Plus自帶的分頁功能的話需要在mapper對象中傳入一個Page對象才可以實現分頁,這樣耦合度是不是太高了一點,從web到service到mapper,這個Page對象一直都在傳入,這樣的使用讓人感覺有點麻煩,但是Mapper Plus不得不說真的是很好用的。
PageHelper用過的人多多少少了解,這個框架要實現分頁只要一行代碼,所以我的想法是將兩個好用的框架整合在一起。
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的包,個人感覺這種版本的只需要在配置文件中配置即可開箱試用非常便捷,但是這個包必須要去掉內置的mybatis依賴,不然會和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. 使用
使用起來很方便,我用一個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);這一行代碼就實現了分頁,而我做了一個判斷的原因是,如若數據是要不分頁展示所有的,那就不需要啟動這行代碼。
最后通PageInfo對象將數據包裝返回即可。
看完上述內容,你們掌握使用Mybatis Plus如何整合PageHelper實現分頁的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。