基于Mybatis分页插件PageHelper使用

前言

本文主要如何使用Mybatis分页插件PageHelper更加有效率的开发出一个具有分页的表单数据,免去人工自己写分页条件,并且在PageHelper中有很多分页之后的属性,比如当前页码,总页码,总记录数等等

操作步骤

1.使用maven自动化构建工具,在pom.xml中导入PageHelper的坐标:

javascript 复制代码
	<!--分页Pagehelper插件 -->
		<dependency>
			<groupId>com.github.pagehelper</groupId>
			<artifactId>pagehelper</artifactId>
			<version>5.0.0</version>
		</dependency>

2.注意这一步很重要,可能已经写好mapper的sql语句,controller,service都写好了,准备测试,但是如果这一步没有配置,PageHelper是不会起作用的,这一步就是在mybatis的配置文件中,配置使用PageHelper插件:

javascript 复制代码
<!-- 引入分页查询的插件 -->
  	 <!-- com.github.pagehelper为PageHelper类所在包名 -->
  	<plugins>
  		<plugin interceptor="com.github.pagehelper.PageInterceptor">
  		<!--分页合理化,没有前一页的时候,赋为1  -->
  		<property name="reasonable" value="true"></property>
  		</plugin>
  	</plugins>

3.测试pagehelper组件,编写controller类,查询方法之前调用PageHelper.startPage()方法来设置分页参数。然后,执行你的查询方法,MyBatis会自动为你添加分页SQL。注意PageHelper.startPage()方法应该在查询方法之前调用,并且只对紧跟其后的第一个查询有效。因此,你应该在调用startPage()之后立即执行你的查询方法。 在Controller类中,调用PageHelper.startPage()方法设置分页参数,然后执行查询方法。例如:

javascript 复制代码
	@RequestMapping("/getStudents")
	@ResponseBody
	public Msg getAllStudents(@RequestParam(value="pn",defaultValue="1")int pn){
		

		//引入PageHelper分页插件
		//在查询之前只需调用,传入页码pageNum,以及每页的大小pageSize(显示条目)
		PageHelper.startPage(pn, 10);
		List<Student> students = studentService.selectAll();
		//使用PageInfo包装查询后的结果,只需要pageInfo交给页面就行
		//封装了详细的分页信息,包括我们查询出来的数据,传入连续显示的页数
		PageInfo page =new PageInfo(students,5);
		System.out.println("当前页码1111:"+page.getPageNum());
		System.out.println("总页码11111:"+page.getPages());
		//运用链示写法,将获取的信息放在Msg的extend中
		return Msg.success().add("studentInfo", page);
		
	}

4.进行单元测试,模拟请求并验证分页结果,主要利用MockMvc在测试类中,模拟请求MVC模式,如下代码:

javascript 复制代码
package com.webapp.test;

import java.util.List;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.MvcResult;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.web.context.WebApplicationContext;

import com.github.pagehelper.PageInfo;
import com.webapp.bean.Student;

@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextConfiguration(locations={"classpath:applicationContext.xml","file:src/main/webapp/WEB-INF/dispatcherServlet-servlet.xml"})
public class TestMvc {

	
	//传入springMVC的ioc
		@Autowired
		WebApplicationContext context;
		//虚拟MVC请求,获取到处理结果
		MockMvc mockMvc;
		
		@Before
		public void initMokcMvc(){
			//模拟请求拿到返回值
			mockMvc=MockMvcBuilders.webAppContextSetup(context).build();
		}
		
		@Test
		public void testPage() throws Exception{
			//模拟请求拿到返回值
			MvcResult result = mockMvc.perform(MockMvcRequestBuilders.get("/main/getStudents").param("pn", "2")).andReturn();
			
			//请求成功以后,请求域中会有pageInfo,我们可以取出pageInfo进行验证
			MockHttpServletRequest request=result.getRequest();
			PageInfo pageInfo = (PageInfo) request.getAttribute("studentInfo");
			System.out.println("当前页码:"+pageInfo.getPageNum());
			System.out.println("总页码:"+pageInfo.getPages());
			System.out.println("总记录数:"+pageInfo.getTotal());
			System.out.println("在页面需要连续显示的页码:");
			int[] nums=pageInfo.getNavigatepageNums();
			for (int i :nums) {
				System.out.println(" "+i);
			}
			
			//获取员工数据
			List<Student> list = pageInfo.getList();
			for (Student student : list) {
				System.out.println("ID"+student.getStuId()+"==>name:"+student.getStuName());
			}
		}
		
}

5.通过上述操作步骤,接下来就继续测试,实际接口调用获取结果输出值,如图所示

总结

本文主要介绍了如何使用Mybatis分页插件PageHelper进行分页查询,以提高开发效率。文章首先强调了分页插件的重要性,然后详细介绍了配置和使用PageHelper的步骤,并通过示例代码展示了如何在Controller中进行分页查询以及如何对分页结果进行单元测试。最后,文章通过实际接口调用的方式验证了分页效果。

相关推荐
用户685453759776920 分钟前
同步成本换并行度:多线程、协程、分片、MapReduce 怎么选才不踩坑
后端
javaTodo28 分钟前
Claude Code 记忆机制详解:从 CLAUDE.md 到 Auto Memory,六层体系全拆解
后端
LSTM971 小时前
使用 C# 和 Spire.PDF 从 HTML 模板生成 PDF 的实用指南
后端
JaguarJack1 小时前
为什么 PHP 闭包要加 static?
后端·php·服务端
BingoGo1 小时前
为什么 PHP 闭包要加 static?
后端
是糖糖啊1 小时前
OpenClaw 从零到一实战指南(飞书接入)
前端·人工智能·后端
百度Geek说2 小时前
基于Spark的配置化离线反作弊系统
后端
Java编程爱好者2 小时前
虚拟线程深度解析:轻量并发编程的未来趋势
后端
苏三说技术2 小时前
Spring AI 和 LangChain4j ,哪个更好?
后端