依赖引入:
<!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.3.0</version>
</dependency>
代码示例:
PageHelper.startPage(pageNum,pageSize);
List<XX> list = xxMapper.selectAll();
PageInfo<XX> pageInfo = PageInfo.of(list);