分页插件pagehelper的运用(超舒服,以后再也不用在sql里写)

Posted 辰辰的小屋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了分页插件pagehelper的运用(超舒服,以后再也不用在sql里写)相关的知识,希望对你有一定的参考价值。

不多说直接上代码(两步解决)

1.pom引入依赖

<dependency>
      <groupId>com.github.pagehelper</groupId>
      <artifactId>pagehelper</artifactId>
      <version>5.1.10</version>
</dependency>

2.运用

PageHelper.startPage(pageNum,pageSize);
List<Product> products = ProductService.selectProductList();
PageInfo<Product> productsPageInfo = new PageInfo<>(products);

只需要接受前端的PageNum(当前页),PageSize(一页显示的数量)  得到的结果集中 会有一个total字段(总数)

以上是关于分页插件pagehelper的运用(超舒服,以后再也不用在sql里写)的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis学习四(分页助手pagehelper)

Mybatis分页插件PageHelper简单使用

PageHelper分页插件及通用分页js

分页插件PageHelper

Mybatis分页插件:PageHelper和PageInfo

PageHelper和MybatisPlus的分页插件冲突