MyBatis-Plus6--MyBatis中的分页插件

ops/2025/1/19 5:17:55/

1.分页插件

MyBatis Plus自带分页插件,只要简单的配置即可实现分页功能

2.默认分页

a. 添加配置类

方式一:直接添加一个配置类
package com.qcby.mybatisPlusTest.config;import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;@Configuration
@MapperScan("com.qcby.mybatisPlusTest.mapper")  //可以将主类中的注解移到此处
public class MybatisPlusConfig {@Beanpublic MybatisPlusInterceptor mybatisPlusInterceptor() {MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();interceptor.addInnerInterceptor(newPaginationInnerInterceptor(DbType.MYSQL));return interceptor;}}
方式二:在启动类直接设置
package com.qcby;import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;@SpringBootApplication
@MapperScan("com.qcby.mybatisPlusTest.mapper")
public class MybatisPlusTestApplication {public static void main(String[] args) {SpringApplication.run(MybatisPlusTestApplication.class, args);}@Beanpublic MybatisPlusInterceptor mybatisPlusInterceptor() {MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();interceptor.addInnerInterceptor(newPaginationInnerInterceptor(DbType.MYSQL));return interceptor;}}

 b.测试

编写测试类

package com.qcby.mybatisPlusTest;import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.qcby.mybatisPlusTest.mapper.UserMapper;
import com.qcby.mybatisPlusTest.model.User;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;import java.util.List;@SpringBootTest
public class MybatisPlusPageTest {@Autowiredprivate UserMapper userMapper;@Testpublic void testPage(){//设置分页参数Page<User> page = new Page<>(1, 5);userMapper.selectPage(page, null);//获取分页数据List<User> list = page.getRecords();list.forEach(System.out::println);System.out.println("当前页:"+page.getCurrent());System.out.println("每页显示的条数:"+page.getSize());System.out.println("总记录数:"+page.getTotal());System.out.println("总页数:"+page.getPages());System.out.println("是否有上一页:"+page.hasPrevious());System.out.println("是否有下一页:"+page.hasNext());}
}

测试结果

 3.xml自定义分页

a. UserMapper中定义接口方法

package com.qcby.mybatisPlusTest.mapper;import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.qcby.mybatisPlusTest.model.User;
import org.apache.ibatis.annotations.Param;/*** BaseMapper模仿向上抽取的思想*/
public interface UserMapper extends BaseMapper<User> {/*** 根据年龄查询用户列表,分页显示* @param page 分页对象 ,xml中可以从里面进行取值 ,传递参数 Page 即自动分页 ,必须放在第一位* @param age 年龄* @return */IPage<User> selectPageVo(@Param("page") Page<User> page, @Param("age") Integer age);}

 b. UserMapper.xml中编写SQL 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapperPUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.qcby.mybatisPlusTest.mapper.UserMapper"><!--SQL 片段,记录基础字段--><sql id="BaseColumns">id,username,age,email</sql><!--IPage<User> selectPageVo(Page<User> page, Integer age);--><select id="selectPageVo" resultType="User">SELECT <include refid="BaseColumns"></include> FROM t_user WHERE age > #{age}</select>
</mapper>

c. 设置类型别名扫描的包

mybatis-plus:#配置类型别名所对应的包type-aliases-package: com.qcby.mybatisPlusTest.model

d. 编写测试代码

 @Testpublic void testSelectPageVo(){//设置分页参数Page<User> page = new Page<>(1, 5);//查询 age>20 的记录进行分页userMapper.selectPageVo(page, 20);//获取分页数据List<User> list = page.getRecords();list.forEach(System.out::println);System.out.println("当前页:"+page.getCurrent());System.out.println("每页显示的条数:"+page.getSize());System.out.println("总记录数:"+page.getTotal());System.out.println("总页数:"+page.getPages());System.out.println("是否有上一页:"+page.hasPrevious());System.out.println("是否有下一页:"+page.hasNext());}

执行结果

测试完成!!

 


http://www.ppmy.cn/ops/151280.html

相关文章

文件下载时利用redis的队列模式顺序下载文件,防止多文件任务下载导致OOM

1、controller层控制 Resourceprivate RedissonClient redissonClient;Slf4j Service public class CustomerSettlementExportServiceImpl implements ICustomerSettlementExportService { /*** 文件加入队列顺序导出** param pubFileExportList 参数* return 结果*/public Aja…

WebSocket 实时聊天

源码 源码包括&#xff1a; 源码地址 &#xff1a; websocket-gitee仓库websocket 聊天室&#xff0c;前后端代码websocket 查看历史消息采用springsecurity作为鉴权前端代码在 resources static 下&#xff0c;好处&#xff1a;打开springboot端口就是改页面&#xff1a; – 例…

【概率论与数理统计】第三章 多维随机变量及其分布(1)

1 多维随机变量的概念 1.1 二维随机变量及其分布函数 在实际问题中&#xff0c;通常需要多个随机变量才能较好地描述某一随机现象&#xff1b;例如&#xff0c;打靶时&#xff0c;弹着点是由两个随机变量所构成的&#xff08;横、纵坐标&#xff09;&#xff1b;飞机重心在空…

linux下的线程

一、pthread 线程 线程可以说是轻量级的进程&#xff0c;一般是一个进程中的多个任务。 进程&#xff1a;系统中的最小资源分配单元 线程:系统中最小执行单元 二、线程的特征 1、共享资源 2、效率高30% 3.使用第三方库&#xff08;头文件加pthread.h 编译时添加 -lpthre…

视频本地化的特点

视频本地化是一个多方面的过程&#xff0c;涉及为特定的语言和文化市场调整视听内容。当由本地专业人员处理时&#xff0c;这个过程达到了自动化工具或非本地专家难以达到的深度和真实性水平。母语人士对语言、文化背景和观众期望有着细致入微的理解&#xff0c;这对于创建与不…

开始使用Panuon开源界面库环境配置并手写VS2019高仿界面

1. Panuon环境配置 1.1. 通过Nuget 安装 Panuon.WPF.UI1.2. xaml引用命名空间1.3. using Panuon.WPF.UI; 2. VS2019 view 2.1. 设置窗体尺寸和title2.2. 添加静态资源 2.2.1. 什么是静态资源 2.3. 主Grid 2.3.1. 盒子模型2.3.2. 嵌套布局 3. 总结 1. Panuon环境配置 1.1. 通…

Web前端------HTML多媒体标签之音频和视频标签

一.音频和视频标签介绍 <audio></audio> 网页中支持播放音频的标签&#xff0c;经常用于给网页添加背景音乐&#xff1b;音频播放网站常用 audio标签&#xff0c;支持网页中播放音频数据注意&#xff1a;需要将支持的mp3文件&#xff0c;保存在指定文件夹中 audi…

idea本地jar包添加到项目的maven库 mvn install:install-file

背景 最近在开发项目中需要对接海康威视摄像头&#xff0c;进行视频、照片等数据的获取保存&#xff1b;海康提供的sdk的jar包是自己开发的&#xff0c;在maven库中是找不到的&#xff0c;在项目中需要手动指定jar包路径 <dependency><groupId>com.haikang</g…