mybatis plus 集合分页插件
作者:互联网
mybatis plus 集合分页插件
该插件专门针对集合数据进行分页,效果还不错!
springboot2.2.9
mybatis-3.2.0
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.2.5</version>
<exclusions>
<exclusion>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
</exclusion>
<exclusion>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
</exclusion>
</exclusions>
</dependency>
//必须先设置 分页参数
PageHelper.startPage(1,2);
PageInfo<AgAdvertisingVo> pageInfo=new PageInfo(retLists);
标签:插件,分页,spring,pagehelper,plus,mybatis,org 来源: https://www.cnblogs.com/cfas/p/15975285.html