springboot整合mybatis+pageHelper

Posted 徐杰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot整合mybatis+pageHelper相关的知识,希望对你有一定的参考价值。

springboot整合mybatis+pageHelper

〇、搭建sporingboot环境,已经整合mybatis环境,本篇主要是添加pageHelper工具

一、添加依赖

<!-- 分页助手 -->
<dependency>
    <groupId>com.github.pagehelper</groupId>
    <artifactId>pagehelper</artifactId>
    <version>4.1.0</version>
</dependency>

二、编写配置类

@Configuration    //这个注解不能忘记
public class PageHelperConfig {
    @Bean
    public PageHelper pageHelper() {
        PageHelper pageHelper = new PageHelper();   
        Properties p = new Properties();
        /**
         *该参数默认为false
         *设置为true时,会将RowBounds第一个参数offset当成pageNum页码使用
         *和startPage中的pageNum效果一样
         */
        p.setProperty("offsetAsPageNum", "true");
        /**
         *该参数默认为false
                 *设置为true时,使用RowBounds分页会进行count查询
         */
        p.setProperty("rowBoundsWithCount", "true");
        /**
         *3.3.0版本可用 - 分页参数合理化,默认false禁用
                 *启用合理化时,如果pageNum<1会查询第一页,如果pageNum>pages会查询最后一页
                 *禁用合理化时,如果pageNum<1或pageNum>pages会返回空数据
         */
        p.setProperty("reasonable", "true");
        pageHelper.setProperties(p);
        return pageHelper;
    }
}

三、基本使用

public List<User> findAll(){
    PageHelper.startPage(1,2);   //第一个参数是从第几个数据开始,第二个是每页显示几条数据 
    return userService.findAll();
}

以上是关于springboot整合mybatis+pageHelper的主要内容,如果未能解决你的问题,请参考以下文章

企业分布式微服务云SpringCloud SpringBoot mybatis (十三)Spring Boot整合MyBatis

SpringBoot整合Mybatis方式2:使用注解方式整合Mybatis

springboot.springboot用最简单的方式整合mybatis

SpringBoot整合Mybatis

基于SpringBoot的完成mybatis整合

SpringBoot:Mybatis整合PostgreSQL