MPJ多表连表查询(包含分页)

2023-11-23 15:50
文章标签 查询 分页 mpj 多表连表

本文主要是介绍MPJ多表连表查询(包含分页),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

MPJ是mybatis plus join 的缩写,以前写多表查询时,一般都是写在配置文件,现在mybatis plus join 完全可以解放写xml文件,功能十分强大。
上代码,本文涉及五张表,连表查询从各个表拿出所需字段输出一条记录。
Device表:
在这里插入图片描述
device_category表
在这里插入图片描述
device_image表:
在这里插入图片描述
device_status表:
在这里插入图片描述
producer表:
在这里插入图片描述
项目工程结构:
在这里插入图片描述
1.首先引入MPJ插件

<dependency><groupId>com.github.yulichang</groupId><artifactId>mybatis-plus-join</artifactId><version>1.3.0</version></dependency>

2.配置config

@Configuration
public class MySqlInjector extends MPJSqlInjector {@Overridepublic List<AbstractMethod> getMethodList(Class<?> mapperClass) {//将原来的保持List<AbstractMethod> methodList = super.getMethodList(mapperClass);//多表查询sql注入 从连表插件里移植过来的methodList.add(new SelectJoinOne());methodList.add(new SelectJoinList());methodList.add(new SelectJoinPage());methodList.add(new SelectJoinMap());methodList.add(new SelectJoinMaps());methodList.add(new SelectJoinMapsPage());return methodList;}
}

mapper包

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
dto:

@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@Accessors(chain = true)
@ApiModel(value = "DeviceInfoDto", description = "")
public class DeviceInfoDto implements Serializable {private static final long serialVersionUID = 1L;/** device表* */@ApiModelProperty("设备id")private Long id;/** device表* */@ApiModelProperty("设备名称")private String deviceName;/** device表* */@ApiModelProperty("设备序列号")private String serialNum;/** device表* */@ApiModelProperty("设备型号")private String modelNum;/** device_category表* */@ApiModelProperty("类别名称")private String categoryName;/** producer表* */@ApiModelProperty("设备产商")private String producer;/** device_status表* */@ApiModelProperty("设备状态值")private String statusValue;/** device_image表* */@ApiModelProperty("图片地址")private String imageUrl;
}

主启动:
在这里插入图片描述
测试代码:

 @Testvoid testJoin(){String status = "启动";/* MPJLambdaWrapper<Device> wrapper = MPJWrappers.<Device>lambdaJoin().select(Device::getId,Device::getDeviceName,Device::getSerialNum,Device::getModelNum).select(DeviceCategory::getCategoryName).select(Producer::getProducer).select(DeviceStatus::getStatusValue).select(DeviceImage::getImageUrl).leftJoin(DeviceCategory.class,on-> on.eq(Device::getCategoryId,DeviceCategory::getId)).leftJoin(Producer.class,on-> on.eq(Device::getProducerId,Producer::getId)).leftJoin(DeviceStatus.class,on-> on.eq(Device::getStatusId,DeviceStatus::getId)).leftJoin(DeviceImage.class,on->on.eq(Device::getId,DeviceImage::getDeviceId)).eq(Device::getCompanyId,1L).eq(!Objects.isNull(status),DeviceStatus::getStatusValue,status);List<Device> devices = deviceMapper.selectList(wrapper);*/IPage<DeviceInfoDto> page = deviceMapper.selectJoinPage(new Page<>(1,3),DeviceInfoDto.class,MPJWrappers.<Device>lambdaJoin().select(Device::getId,Device::getDeviceName,Device::getSerialNum,Device::getModelNum).select(DeviceCategory::getCategoryName).select(Producer::getProducer).select(DeviceStatus::getStatusValue).select(DeviceImage::getImageUrl).leftJoin(DeviceCategory.class,on-> on.eq(Device::getCategoryId,DeviceCategory::getId)).leftJoin(Producer.class,on-> on.eq(Device::getProducerId,Producer::getId)).leftJoin(DeviceStatus.class,on-> on.eq(Device::getStatusId,DeviceStatus::getId)).leftJoin(DeviceImage.class,on->on.eq(Device::getId,DeviceImage::getDeviceId)).eq(Device::getCompanyId,1L).eq(!Objects.isNull(status),DeviceStatus::getStatusValue,status));page.getRecords().forEach(System.out::println);}

运行结果:
在这里插入图片描述

这篇关于MPJ多表连表查询(包含分页)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/419026

相关文章

SpringBoot基于MyBatis-Plus实现Lambda Query查询的示例代码

《SpringBoot基于MyBatis-Plus实现LambdaQuery查询的示例代码》MyBatis-Plus是MyBatis的增强工具,简化了数据库操作,并提高了开发效率,它提供了多种查询方... 目录引言基础环境配置依赖配置(Maven)application.yml 配置表结构设计demo_st

Redis KEYS查询大批量数据替代方案

《RedisKEYS查询大批量数据替代方案》在使用Redis时,KEYS命令虽然简单直接,但其全表扫描的特性在处理大规模数据时会导致性能问题,甚至可能阻塞Redis服务,本文将介绍SCAN命令、有序... 目录前言KEYS命令问题背景替代方案1.使用 SCAN 命令2. 使用有序集合(Sorted Set)

MyBatis框架实现一个简单的数据查询操作

《MyBatis框架实现一个简单的数据查询操作》本文介绍了MyBatis框架下进行数据查询操作的详细步骤,括创建实体类、编写SQL标签、配置Mapper、开启驼峰命名映射以及执行SQL语句等,感兴趣的... 基于在前面几章我们已经学习了对MyBATis进行环境配置,并利用SqlSessionFactory核

PostgreSQL如何查询表结构和索引信息

《PostgreSQL如何查询表结构和索引信息》文章介绍了在PostgreSQL中查询表结构和索引信息的几种方法,包括使用`d`元命令、系统数据字典查询以及使用可视化工具DBeaver... 目录前言使用\d元命令查看表字段信息和索引信息通过系统数据字典查询表结构通过系统数据字典查询索引信息查询所有的表名可

活用c4d官方开发文档查询代码

当你问AI助手比如豆包,如何用python禁止掉xpresso标签时候,它会提示到 这时候要用到两个东西。https://developers.maxon.net/论坛搜索和开发文档 比如这里我就在官方找到正确的id描述 然后我就把参数标签换过来

ural 1026. Questions and Answers 查询

1026. Questions and Answers Time limit: 2.0 second Memory limit: 64 MB Background The database of the Pentagon contains a top-secret information. We don’t know what the information is — you

Mybatis中的like查询

<if test="templateName != null and templateName != ''">AND template_name LIKE CONCAT('%',#{templateName,jdbcType=VARCHAR},'%')</if>

oracle分页和mysql分页

mysql 分页 --查前5 数据select * from table_name limit 0,5 select * from table_name limit 5 --limit关键字的用法:LIMIT [offset,] rows--offset指定要返回的第一行的偏移量,rows第二个指定返回行的最大数目。初始行的偏移量是0(不是1)。   oracle 分页 --查前1-9

京东物流查询|开发者调用API接口实现

快递聚合查询的优势 1、高效整合多种快递信息。2、实时动态更新。3、自动化管理流程。 聚合国内外1500家快递公司的物流信息查询服务,使用API接口查询京东物流的便捷步骤,首先选择专业的数据平台的快递API接口:物流快递查询API接口-单号查询API - 探数数据 以下示例是参考的示例代码: import requestsurl = "http://api.tanshuapi.com/a

DAY16:什么是慢查询,导致的原因,优化方法 | undo log、redo log、binlog的用处 | MySQL有哪些锁

目录 什么是慢查询,导致的原因,优化方法 undo log、redo log、binlog的用处  MySQL有哪些锁   什么是慢查询,导致的原因,优化方法 数据库查询的执行时间超过指定的超时时间时,就被称为慢查询。 导致的原因: 查询语句比较复杂:查询涉及多个表,包含复杂的连接和子查询,可能导致执行时间较长。查询数据量大:当查询的数据量庞大时,即使查询本身并不复杂,也可能导致