mybatis plus 3.5 对应的分页插件
时间: 2023-07-25 08:14:24 浏览: 152
MyBatis-Plus 3.5 对应的分页插件是 com.baomidou.mybatisplus.extension.plugins.pagination.Page。该插件可以使用 PageHelper.startPage() 方法进行分页,也可以在 MyBatis-Plus 的 Service 层方法中直接使用 Page 对象进行分页查询。使用该插件可以方便地实现分页功能,提高开发效率。
相关问题
mybatis plus 3.5 对应的分页插件 版本
MyBatis-Plus 3.5 对应的分页插件版本是 3.5.0。该版本的分页插件已经内置在 MyBatis-Plus 中,无需额外引入依赖。如果需要使用该插件进行分页查询,只需要在查询方法中传入 Page 对象即可。同时,该插件也支持自定义分页插件,可以通过实现 com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor 接口进行扩展。
mybatis plus 3.5 对应的 pagehelper-spring-boot-starter 版本
非常抱歉,我的回答还是有误。MyBatis-Plus 3.5 并不依赖于 PageHelper 分页插件,因此没有对应的 pagehelper-spring-boot-starter 版本。如果需要使用 PageHelper 进行分页查询,可以在项目中引入对应的 PageHelper 依赖以及 Spring Boot Starter 依赖,例如:
```
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.1.11</version>
</dependency>
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.3.0</version>
</dependency>
```
同时需要在 Spring Boot 的配置文件中配置 PageHelper 插件,例如:
```
pagehelper.helperDialect=mysql
pagehelper.reasonable=true
pagehelper.supportMethodsArguments=true
pagehelper.params=count=countSql
```
使用 PageHelper 进行分页查询,可以通过调用 PageHelper.startPage() 方法进行分页,例如:
```
PageHelper.startPage(1, 10);
List<User> userList = userDao.selectUserList();
```
这样就可以在查询时实现分页功能了。
阅读全文