概述
分页查询的sql语句为
select * from 表名 limit 当前索引 每页显示总数;
当前索引:startIndex
每页显示条数:pageSize
当前页为: currentPage
则:startIndex = (currentPage-1)*pageSize
为了知道总页数,我们需要查询数据库表的总记录数。
总记录数为totalCount
总页数为totalPage,
则有:totalPage为totalCount%pageSize==0?totalCount/pageSize:(totalCount/pageSize+1)。
方式一
将分页查询的两个重要参数:startIndex,pageSize作为方法的参数传递到SQL语句中执行。
//在dao层的mapper接口定义方法
List<Student> queryForPage(int startIndex,int pageSize);
//在Mapper.xml映射文件中编写sql
//此时多个参数传递,只能写param1,param2或者arg0,arg1
<select id="queryForPage" resultType="Student" >
select * from student limit #{param1},#{param2}
</select>
//--------------------------------------------------------
//如果通过注解的方式将参数传递给xml中,则分页参数为传递的参数值
List<Student> queryForPage(@Param("startIndex") int startIndex, @Param("pageSize") int pageSize);
<select id="queryForPage" resultType="Student" >
select * from student limit #{startIndex},#{pageSize}
</select>
//测试
@Test
public void queryForPage(){
int currentPage = 1;
int pageSize = 5;
List<Student> students = studentMapper.queryForPage((currentPage-1)*pageSize, pageSize);
for (Student student : students) {
System.out.println(student);
}
}
方式二
将参数封装为Map集合。
List<Student> queryForPage2(Map<String,Integer> map);
<select id="queryForPage2" resultType="Student" parameterType="Map" >
select * from student limit #{startIndex},#{pageSize}
</select>
//测试
@Test
public void queryForPage2(){
int currentPage = 1;
int pageSize = 5;
Map<String,Integer> map = new HashMap<>();
map.put("startIndex",(currentPage-1)*pageSize);
map.put("pageSize",pageSize);
List<Student> students = studentMapper.queryForPage2(map);
for (Student student : students) {
System.out.println(student);
}
}
方式三
使用Mybatis的RowBounds实现分页。它是将查询的所有结果进行处理,只显示需要的结果。
List<Student> findAll();
<select id="findAll" resultType="Student">
select * from student
</select>
@Test
public void queryForPage3(){
int currentPage = 1;
int pageSize = 5;
RowBounds rowBounds = new RowBounds((currentPage-1)*pageSize,pageSize);
List<Student> students = sqlSession.selectList("com.coydone.mapper.StudentMapper.findAll", null, rowBounds);
sqlSession.close();
for (Student student : students) {
System.out.println(student);
}
}
方式四
使用分页工具类PageUtils对分页的参数进行封装。
package com.coydone.utils;
public class PageUtils {
private Integer currentPage;
private Integer startIndex;
private Integer pageSize=5;
private Integer totalCount;
private Integer totalPage;
public Integer getCurrentPage() {
return currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
this.startIndex=(this.currentPage-1)*this.pageSize;
}
public Integer getPageSize() {
return pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
//计算总页数
this.totalPage=(int)Math.ceil((this.totalCount*1.0/this.pageSize));
}
public Integer getTotalPage() {
return totalPage;
}
public void setTotalPage(Integer totalPage) {
this.totalPage = totalPage;
}
public Integer getStartIndex() {
return startIndex;
}
public void setStartIndex(Integer startIndex) {
this.startIndex = startIndex;
}
}
List<Student> queryForPage3(PageUtils pageUtils);
<!--parameterType可以省略,mybatis会自动去适配参数类型-->
<select id="queryForPage3" resultType="Student">
select * from student limit #{startIndex},#{pageSize}
</select>
@Test
public void queryForPage4(){
int currentPage = 1;
int pageSize = 5;
PageUtils pageUtils = new PageUtils();
pageUtils.setStartIndex((currentPage-1)*pageSize);
pageUtils.setPageSize(pageSize);
List<Student> students = studentMapper.queryForPage3(pageUtils);
for (Student student : students) {
System.out.println(student);
}
}
方式五
使用分页插件pagehelper。
pagehelper只需要我们写全查询的sql语句,它会将sql语句进行改造,查询表中的记录数,查询分页的数据。
有关分页工具pagehelper的详细介绍可以看官方文档:https://pagehelper.github.io/docs/howtouse/。
1、在pom.xml导入pagehelper依赖。
<!-- 分页插件 -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.2.0</version>
</dependency>
2、mybatis-config.xml中进行插件配置。
配置顺序按照properties、settings、typeHandlers、objectFactory、objectWrapperFactory、reflectorFactory、plugins、environments、databaseldProvider、mappers的顺序。
<plugins>
<plugin interceptor="com.github.pagehelper.PageInterceptor"></plugin>
</plugins>
配置介绍:
<plugins>
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<!-- 4.0.0以后版本可以不设置该参数 -->
<!--<property name="dialect" value="mysql"/>-->
<!-- 该参数默认为false -->
<!-- 设置为true时,会将RowBounds第一个参数offset当成pageNum页码使用 -->
<!-- 和startPage中的pageNum效果一样-->
<property name="offsetAsPageNum" value="true"/>
<!-- 该参数默认为false -->
<!-- 设置为true时,使用RowBounds分页会进行count查询 -->
<property name="rowBoundsWithCount" value="true"/>
<!-- 设置为true时,如果pageSize=0或者RowBounds.limit = 0就会查询出全部的结果 -->
<!-- (相当于没有执行分页查询,但是返回结果仍然是Page类型)-->
<property name="pageSizeZero" value="true"/>
<!-- 3.3.0版本可用 - 分页参数合理化,默认false禁用 -->
<!-- 启用合理化时,如果pageNum<1会查询第一页,如果pageNum>pages会查询最后一页 -->
<!-- 禁用合理化时,如果pageNum<1或pageNum>pages会返回空数据 -->
<property name="reasonable" value="true"/>
<!-- 3.5.0版本可用 - 为了支持startPage(Object params)方法 -->
<!-- 增加了一个`params`参数来配置参数映射,用于从Map或ServletRequest中取值 -->
<!-- 可以配置pageNum,pageSize,count,pageSizeZero,reasonable,orderBy,不配置映射的用默认值 -->
<!-- 不理解该含义的前提下,不要随便复制该配置 -->
<!--<property name="params" value="pageNum=start;pageSize=limit;"/>-->
<!-- 支持通过Mapper接口参数来传递分页参数 -->
<!--<property name="supportMethodsArguments" value="true"/>-->
<!-- always总是返回PageInfo类型,check检查返回类型是否为PageInfo,none返回Page -->
<!--<property name="returnPageInfo" value="check"/>-->
</plugin>
</plugins>
3、编写mapper接口方法
List<Student> queryByPageHelper(Student student);
4、配置mapper.xml中的sql
<select id="queryByPageHelper" resultType="Student">
select * from student
</select>
5、测试
@Test
public void queryByPageHelper(){
Student student = new Student();
int currentPage = 1;
int pageSize = 5;
//startPage(要查询第几页,每页条数,是否查询总条数[默认为true])
Page<Student> page = PageHelper.startPage(currentPage, pageSize);
List<Student> students = studentMapper.queryByPageHelper(student);
for (Student stu : students) {
System.out.println(stu);
}
System.out.println("总页数:"+page.getPages());
System.out.println("总条数:"+page.getTotal());
}
评论区