MybatisPlus联表分页查询(使用xml)

文章介绍了如何使用MybatisPlus进行联表查询和分页操作。通过配置分页插件,创建实体类和VO,定义Mapper接口与XML文件,实现了基于道路名称的条件分页查询路段信息,展示了查询结果并强调了MybatisPlus的便利性。
摘要由CSDN通过智能技术生成

前言

对于单表为主的开发任务,MybatisPlus使用起来更加顺手和简便。但总免不了要有联表查询的时候,这时候xml的优势就体现出来了,记录一下如何使用MybatisPlus进行联表分页查询。

代码实现

分页配置

开启MybatisPlus的分页插件

@Configuration
@MapperScan("com.example.nb_road.mapper")
public class MyBatisPlusConfig {
    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor(){
        MybatisPlusInterceptor interceptor=new MybatisPlusInterceptor();
        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
        return interceptor;
    }
}

实体类及VO

实体类:路段。路段中的roadId代表了所属道路的id,因此需要联表查询所属道路的名称。

package com.example.nb_road.entity;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;

import java.io.Serializable;

@TableName(value = "section")
@Data
public class RoadSection implements Serializable {
    private static final long serialVersionUID = 1L;
    
    @TableId(type = IdType.AUTO)
    private Long id;
    
    private Long roadId;
    
    private Double length;
    
    private String start;
    
    private String end;
    
    private String coordinates;
    
    private Integer state;
    
    private Integer isDeleted;
}

VO类在继承实体类的基础上,增加道路名称属性。

package com.example.nb_road.entity.vo;

import com.example.nb_road.entity.RoadSection;
import lombok.Data;
import lombok.ToString;

@Data
@ToString
public class RoadSectionVO extends RoadSection {
    private String roadName;
}

Mapper接口

@Repository
public interface RoadSectionMapper extends BaseMapper<RoadSection> {
    /**
     * 自定义分页查询
     *
     * @param page     分页对象
     * @param roadName 其中一个查询参数,路段名称
     * @return 包含的查询结果的分页对象
     */
    IPage<RoadSectionVO> selectPage(IPage<RoadSectionVO> page, @Param("roadName") String roadName);
}

Mapper文件(xml)

这里做了一个条件判断,如果给定的路段名称为空,那么就不包含该项。

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.example.nb_road.mapper.RoadSectionMapper">
    <select id="selectPage" resultType="com.example.nb_road.entity.vo.RoadSectionVO">
        select s.id, r.road_name
        from section s join road r on s.road_id = r.id
        <where>
            <if test="roadName != null and roadName != ''">and r.road_name = # {roadName}</if>
        </where>
    </select>
</mapper>

测试

@Slf4j
@SpringBootTest
class RoadSectionMapperTest {
    @Autowired
    private RoadSectionMapper roadSectionMapper;
    
    @Test
    void testPage(){
        // 构建分页对象
        IPage<RoadSectionVO> page = new Page<>(1, 2);
        // 调用查询方法
        IPage<RoadSectionVO> roadSectionIPage = roadSectionMapper.selectPage(page, "雪里段");
        // 从分页对象中取出查询结果
        List<RoadSectionVO> records = roadSectionIPage.getRecords();
        records.forEach(System.out::println);
    }
}

控制台输出

JDBC Connection [HikariProxyConnection@994185757 wrapping com.mysql.cj.jdbc.ConnectionImpl@7a2ab862] will not be managed by Spring
==>  Preparing: SELECT COUNT(*) AS total FROM section s JOIN road r ON s.road_id = r.id WHERE r.road_name = ?
==> Parameters: 雪里段(String)
<==    Columns: total
<==        Row: 3
<==      Total: 1
==>  Preparing: select s.id, r.road_name from section s join road r on s.road_id = r.id WHERE r.road_name = ? LIMIT ?
==> Parameters: 雪里段(String), 2(Long)
<==    Columns: id, road_name
<==        Row: 1, 雪里段
<==        Row: 2, 雪里段
<==      Total: 2
Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2a53f215]
RoadSectionVO(roadName=雪里段)
RoadSectionVO(roadName=雪里段)

可以发现,只要将分页对象作为mapper方法的第一个参数,MybatisPlus会在开始查询前计算分页数据。完成相应的分页查询。

要在 Spring Boot 中使用 Mybatis-Plus 进行联表分页模糊查询,可以按照以下步骤进行操作: 1. 添加 Mybatis-Plus 依赖 在 pom.xml 文件中添加 Mybatis-Plus 的依赖: ```xml <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.3.1</version> </dependency> ``` 2. 创建实体类 创建需要查询的实体类,并使用 `@TableName` 注解指定数据库表名,`@TableField` 注解指定该字段对应的数据库列名。 ```java @Data @TableName("user") public class User { @TableId(type = IdType.AUTO) private Long id; @TableField("name") private String name; @TableField("age") private Integer age; @TableField("address") private String address; } ``` 3. 创建 Mapper 接口 创建 Mapper 接口,并继承 Mybatis-Plus 的 `BaseMapper` 接口,可以直接使用 Mybatis-Plus 提供的方法进行数据库操作。 ```java public interface UserMapper extends BaseMapper<User> { List<User> selectUserPage(Page<User> page, @Param("name") String name, @Param("address") String address); } ``` 4. 编写 SQL 编写需要执行的 SQL,可以使用 Mybatis-Plus 提供的 `Wrapper` 类进行条件拼接。 ```java public class UserWrapper extends QueryWrapper<User> { public UserWrapper likeName(String name) { if (StringUtils.isNotBlank(name)) { like("name", name); } return this; } public UserWrapper likeAddress(String address) { if (StringUtils.isNotBlank(address)) { like("address", address); } return this; } } ``` 5. 编写 Service 层 在 Service 层中调用 Mapper 接口,可以使用 Mybatis-Plus 提供的 `Page` 类进行分页查询。 ```java @Service public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements UserService { @Override public Page<User> selectUserPage(int pageNum, int pageSize, String name, String address) { Page<User> page = new Page<>(pageNum, pageSize); List<User> userList = baseMapper.selectUserPage(page, name, address); page.setRecords(userList); return page; } } ``` 6. 编写 Controller 层 在 Controller 层中调用 Service 层,可以使用 Spring MVC 提供的 `@RequestParam` 注解获取请求参数。 ```java @RestController @RequestMapping("/user") public class UserController { @Autowired private UserService userService; @GetMapping("/page") public Page<User> selectUserPage(@RequestParam(defaultValue = "1") int pageNum, @RequestParam(defaultValue = "10") int pageSize, @RequestParam(required = false) String name, @RequestParam(required = false) String address) { return userService.selectUserPage(pageNum, pageSize, name, address); } } ``` 这样就完成了在 Spring Boot 中使用 Mybatis-Plus 进行联表分页模糊查询。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值