Mybatis处理多对一映射关系

文章介绍了在MyBatis框架下,处理员工与部门这种多对一映射关系的三种方法:级联方式、association标签以及分步查询。通过示例代码展示了如何在查询员工时同时获取其所属部门的信息。
摘要由CSDN通过智能技术生成

例如:员工与部门的关系,多对一映射,当查询员工时同时查出所属部门;

           Emp中的dept字段为引用类型;

@Data
@AllArgsConstructor
@NoArgsConstructor
public class Emp {
    // 员工编号
    private Integer empId;
    // 员工名称
    private String empName;
    // 部门ID
    private Integer deptId;
    // 员工部门
    private Dept dept;
}

mybatis中处理多对一映射关系的三种方法:

        1、级联方式

    <resultMap id="empAndDeptMap" type="Emp">
        <result property="empId"    column="emp_id"/>
        <result property="empName"  column="emp_name"/>
        <!--级联映射-->
        <result property="dept.deptId" column="dept_id"/>
        <result property="dept.deptName" column="dept_Name"/>
    </resultMap>

    <select id="queryEmpAndDeptById"   resultMap="empAndDeptMap">
        select  emp_id,
                emp_name,
                E.dept_id,
                dept_name
        from EMP E LEFT JOIN DEPT D ON D.dept_id = E.dept_id
        where emp_id =${empId}
    </select>

 2、association

    <resultMap id="empAndDeptMapOne" type="Emp">
        <result property="empId"    column="emp_id"/>
        <result property="empName"  column="emp_name"/>
        <!--association-->
        <association property="dept"  javaType="Dept">
            <id column="dept_id" property="deptId"/>
            <result column="dept_name" property="deptName"/>
        </association>
    </resultMap>

    <select id="queryEmpAndDeptById"   resultMap="empAndDeptMap">
        select  emp_id,
                emp_name,
                E.dept_id,
                dept_name
        from EMP E LEFT JOIN DEPT D ON D.dept_id = E.dept_id
        where emp_id =${empId}
    </select>

3、分步查询

    <resultMap id="empAndDeptStepMap" type="Emp">
        <result property="empId"    column="emp_id"/>
        <result property="empName"  column="emp_name"/>
        <!--association-->
        <association property="dept"                                 
           select="com.neusoft.mybatis.parameter.mapper.DeptMapper.queryDeptById" 
           column="dept_id"/>
    </resultMap>
    <select id="queryEmpAndDeptById"   resultMap="empAndDeptStepMap">
        select  emp_id,
                emp_name,
                dept_id
        from EMP E
        where emp_id =${empId}
    </select>

查询结果如下:

Emp(empId=1, empName=某某, deptId=null, dept=Dept(deptId=1, deptName=解决方案))

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

流星雨洒满天空

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值