MyBatisMyBatis分页插件Pagehelper
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyBatisMyBatis分页插件Pagehelper相关的知识,希望对你有一定的参考价值。
目录
【MyBatis】MyBatis分页插件Pagehelper
第一步 pom.xml
SpringBoot
Spring
第二步 增加配置 设置数据库方言
yml
properties
第三步 使用
【MyBatis】MyBatis分页插件Pagehelper
第一步 pom.xml
SpringBoot
<!-- 分页插件 -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.2.13</version>
</dependency>
Spring
<!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.1.11</version>
</dependency>
第二步 增加配置 设置数据库方言
yml
# MyBatis分页插件
pagehelper:
helper-dialect: mysql
properties
# MyBatis分页插件
pagehelper.helper-dialect=mysql
第三步 使用
//配置分页信息
Page<Map<String, Object>> objects = PageHelper.startPage(pageNo, pageSize);
//调用MyBatis Dao
this.baseMapper.queryAll(parameter);
return objects;
以上是关于MyBatisMyBatis分页插件Pagehelper的主要内容,如果未能解决你的问题,请参考以下文章