springboot+mybatis使用分页插件pageHelper

springboot+mybatis使用分页插件pageHelper

1.pom.xml文件添加依赖


        
            com.github.pagehelper
            pagehelper-spring-boot-starter
            1.2.3
        

注意版本问题,如果出现不能使用可以更换版本使用。我的springboot使用的是2.0.5,使用正常

2.application.yml配置(可以不配置,使用默认配置)

pagehelper:
  # dialect: ①
  # 分页插件会自动检测当前的数据库链接,自动选择合适的分页方式(可以不设置)
  helper-dialect: mysql
  # 上面数据库设置后,下面的设置为true不会改变上面的结果(默认为true)
  auto-dialect: true
  page-size-zero: false # ②
  reasonable: true # ③
  # 默认值为 false,该参数对使用 RowBounds 作为分页参数时有效。(一般用不着)
  offset-as-page-num: false
  # 默认值为 false,RowBounds是否进行count查询(一般用不着)
  row-bounds-with-count: false
  #params: ④
  #support-methods-arguments: 和params配合使用,具体可以看下面的讲解
  # 默认值为 false。设置为 true 时,允许在运行时根据多数据源自动识别对应方言的分页
  auto-runtime-dialect: false # ⑤
  # 与auto-runtime-dialect配合使用
  close-conn: true
  # 用于控制默认不带 count 查询的方法中,是否执行 count 查询,这里设置为true后,total会为-1
  default-count: false
  #dialect-alias: ⑥

3.在代码中使用

//就很精简的一行代码 
//PageHelper.startPage(pageNumber, pageSize)
//在这行代码后的第一条查询语句自动分页
Page<Object> page = PageHelper.startPage(1, 5);
//分页
            amzSellerSkuList = searchDataByAsinAndUserIdMapper.findCodingByAsin(buCategoryModelNumberAsin.getAsinId());
//不分页
 List<UserPermissionRel> userPermissionRelList = userPermissionRelMapper.findAllByUserId(userId);
 map.put("total", page.getTotal());  //获得总条数
 map.put("pageNumber", page.getPageNum());//当前页
 map.put("pageSize", page.getPageSize());//查询条数

你可能感兴趣的:(SpringBoot)