当前位置:   article > 正文

【Java】Spring Boot 配置 PageHelper分页插件_springboot分页插件pagehelper

springboot分页插件pagehelper

配置依赖

   <!--分页插件-->
    <dependency>
        <groupId>com.github.pagehelper</groupId>
        <artifactId>pagehelper</artifactId>
        <version>5.3.1</version>
    </dependency>
    <dependency>
        <groupId>com.github.pagehelper</groupId>
        <artifactId>pagehelper-spring-boot-starter</artifactId>
        <version>1.4.1</version>
    </dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

PS:springboot 2.6以上仅支持 1.4.1以上的版本

在application.yml中添加配置

# 分页插件
pagehelper:
  helperDialect: mysql
  reasonable: true
  supportMethodsArguments: true
  params: count=countSql
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

java代码中使用

public PageBean<Staff> getAll(int page, int pageSize) {
        Page p = PageHelper.startPage(page, pageSize);
        // 根据条件,页码,分页大小,将PageBean中的属性依次设置
        PageBean<Staff> pageBean = new PageBean<>();

        List<Staff> data = null;
        try {
            data = staffMapper.findList();
        } catch (Exception e) {
            e.printStackTrace();
        }
        pageBean.setData(data);
        pageBean.setCurrPage(page);
        pageBean.setCurrPageSize(data.size());
        pageBean.setPageSize(pageSize);
        pageBean.setTotalNums((int) p.getTotal());
        pageBean.setTotalPages(p.getPages());
        return pageBean;
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

pageBean

@Data
public class PageBean<T> {
    private List<T> data; // 当前页数据
    private int currPageSize; // 当前页数据的数量
    private int currPage; // 当前页面
    private int totalPages;// 总页数
    private int totalNums;// 总数量
    private int pageSize;// 分页大小
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/87981
推荐阅读
相关标签
  

闽ICP备14008679号