最近想起来了做一些笔记的记录,尽量完整希望能给看到博客的人一些帮助。

1.环境准备

员工表

springboot中mysql查询匹配字符_mybatis

CREATE TABLE `employee` (
  `id` int NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `d_id` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

部门表

springboot中mysql查询匹配字符_xml_02

CREATE TABLE `department` (
  `id` int NOT NULL,
  `d_name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

boot项目环境
这里因为xml文件没有放到res目录下,所以在pom文件里面配置了这个为了解决类路径下xml文件不导出的问题

<!--在build中配置resources,来防止我们资源导出失败的问题-->
    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>true</filtering>
            </resource>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>true</filtering>
            </resource>
        </resources>
    </build>

pom相关依赖,这里我用了plus依赖和boot的测试依赖,这里还需要引入一个boot的父依赖,学过boot应该都知道

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
		</dependency>
		 <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.0.5</version>
        </dependency>
        <!--lombok用来简化实体类:需要安装lombok插件-->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.22</version>
        </dependency>

项目结构

相关类

springboot中mysql查询匹配字符_java_03

mapper位置

springboot中mysql查询匹配字符_xml_04

一些关键配置

关键是这个xml文件映射,指定xml文件路径

mybatis-plus.mapper-locations=classpath:com/yl/mapper/xml/*.xml

和一个boot启动类的mapperscan,这个是用来扫描对应的接口使得mybatis方便生成代理对象

springboot中mysql查询匹配字符_java_05


数据源配置就没啥了

接口和xml文件和dto类

这里演示两种情况,一个类里面包含另外一个类,和一个集合对象一对多的情况
实体类

@Data
public class employeeDto {
    private Integer id;

    private String name;

    private Integer dId;

    Department department;
}

```xml
@Data
public class departmentDto {
    private Integer id;

    private String dName;

    List<Employee> emps;
}

两个实体类

@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
public class Department implements Serializable {
    private static final long serialVersionUID = 1L;
    @TableId(value = "id", type = IdType.ID_WORKER_STR)
    private Integer id;
    private String dName;
}
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
public class Employee implements Serializable {
    private static final long serialVersionUID = 1L;
    @TableId(value = "id", type = IdType.ID_WORKER_STR)
    private Integer id;
    private String name;
    private Integer dId;
}

接口

public interface DepartmentMapper extends BaseMapper<Department> {
    List<departmentDto> list();
}
public interface EmployeeMapper extends BaseMapper<Employee> {
    List<employeeDto> selectDeU();
}

对应的xml文件
DepartmentMapper.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.yl.mapper.DepartmentMapper">
    <resultMap id="departmentDto" type="com.yl.entity.dot.departmentDto">
        <id column="did" property="id"></id>
        <result column="dName" property="dName"></result>
        <collection property="emps" javaType="list" ofType="com.yl.entity.Employee">
            <id column="id" property="id"></id>
            <result column="name" property="name"></result>
            <result column="d_id" property="dId"></result>
        </collection>
    </resultMap>
    <select id="list" resultMap="departmentDto">
  select e.id,e.name,e.d_id,d.id as did,d.d_name as  dName from employee as e left join department as d
   on e.d_id =d.id
    </select>
</mapper>

EmployeeMapper.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.yl.mapper.EmployeeMapper">
    <resultMap id="dtoEmployee" type="com.yl.entity.dot.employeeDto">
        <id column="id" property="id"></id>
        <result column="name" property="name"></result>
        <result column="d_id" property="dId"></result>
        <association property="department"  javaType="com.yl.entity.Department">
            <id column="did" property="id"></id>
            <result column="dName" property="dName"></result>
        </association>
    </resultMap>
    <select id="selectDeU" resultMap="dtoEmployee">
        select e.id,e.name,e.d_id,d.id as did,d.d_name as  dName from employee as e left join department 
        as d on e.d_id =d.id
    </select>
</mapper>

简单的一些解释

一对多和多以一的情况,需要自定义结果映射集,resultMap其中的association一般可以用来处理类中存在复杂对象类型的情况,collection 可以用来处理类中存在list这种集合类型的情况。
其中的一些标签属性也比较简明。
property: 对象的属性名,就是resultMap中类中对应复杂对象的字段名称
javaType: 对象的类型,全限定名称
还有一个集合对象collection标签的属性javaType需要指定的是集合类型,这里是可以直接简写为list
ofType: 这个是集合对象里面的对象类型,需要写全限定名称

最后的测试

springboot中mysql查询匹配字符_java_06

springboot中mysql查询匹配字符_ci_07

最后提一句

这样写也可以,把数据全查出来交由mybatis封装到对应的类里面,还有一种方式是使用collection标签或者association标签里面的select属性,通过关联查询查出对应的属性值,这涉及到关联查询也是需要提供参数,这里就是这两个标签的column属性了。
举个大概例子: column=“{id2=id1,name2=name1}”,id1,name1就是主查询查出的字段,id2和name2就是 关联查询中需要的参数。

如果遇到问题,和觉得写得有什么不好的地方请提出来,交流是最好的学习方式。