Mybatis中实现多表查询

mybatis中实现多表查询方式

  1. 在业务层(service)中处理,对两张表分别编写单表查询语句,然后将结果合并。
  2. 使用mybatis中resultMap标签进行实现。

当多表查询时,类中包含另一个类的对象
这里主要使用第二种方法

一、resultMap属性

  • resultMap标签写在mapper.xml中,由程序员控制SQL查询结果与实体类的映射关系。
  • 默认MyBatis使用Auto Mapping特性
  • 使用resultMap 标签时,select标签不写resultType属性,而是使用resultMap属性引用resultMap标签

使用resultMap实现数据库表和表单映射关系
举例部门表和员工表
数据库字段(部门表)
Mybatis中实现多表查询_第1张图片实体类
Mybatis中实现多表查询_第2张图片DepartmentMapper.xml

 1  <mapper namespace="com.gm.springbootweb05restfulcrud.entities.Department">
       <resultMap type="Department" id="dept">
          
          <id column="id" property="id"/>
           
           <result  column="departmentName" property="departmentName"/>
       resultMap>
 
       <select id="seleDept"  resultMap="dept">
           select * from department where id=#{id}
      select>
  mapper>

数据库字段(员工表)
Mybatis中实现多表查询_第3张图片
实体类

Mybatis中实现多表查询_第4张图片EmployeeMapper.xml

  • association装配一个对象时使用(包含在employee中的对象)
  • property 关联对象
  • select 通过哪个查询查询出这个对象的信息
  • column 把当前表的哪个列的值作为参数传递给另一个查询
    <resultMap id="emp" type="com.gm.springbootweb05restfulcrud.entities.Employee">
        <id property="id" column="id"/>
          
        <result property="lastName" column="lastName"/>
        <result property="email" column="email"/>
        <result property="gender" column="gender"/>
        <result property="birth" column="birth"/>
          
        <association property="department" select="com.gm.springbootweb05restfulcrud.dao.DepartmentMapper.seleDept" column="id"/>

    resultMap>

<select id="selEmp"  resultMap="emp">
    select * from employee
select>

这样就实现了将department对象封装到employee中
更加详细:https://www.cnblogs.com/axu521/p/10109766.html

你可能感兴趣的:(框架)