• 八、自定义映射resultMap


    八、自定义映射resultMap

    1、resultMap处理字段和属性的映射关系

    若字段名和实体类中的属性名不一致,则可以通过resultMap设置自定义映射

    
    <resultMap id="userMap" type="User">
        <id property="id" column="id">id>
        <result property="userName" column="user_name">result>
        <result property="password" column="password">result>
        <result property="age" column="age">result>
        <result property="sex" column="sex">result>
    resultMap>
    
    <select id="testMohu" resultMap="userMap">
        
        select id,user_name,password,age,sex from t_user where user_name like
    concat('%',#{mohu},'%')
    select>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    若字段名和实体类中的属性名不一致,但是字段名符合数据库的规则(使用_),实体类中的属性 名符合Java的规则(使用驼峰)

    此时也可通过以下两种方式处理字段名和实体类中的属性的映射关系

    a>可以通过为字段起别名的方式,保证和实体类中的属性名保持一致

    b>可以在MyBatis的核心配置文件中设置一个全局配置信息mapUnderscoreToCamelCase,可 以在查询表中数据时,自动将_类型的字段名转换为驼峰

    例如:字段名user_name,设置了mapUnderscoreToCamelCase,此时字段名就会转换为 userName

    2、多对一映射处理

    查询员工信息以及员工所对应的部门信息

    a>级联方式处理映射关系

    <resultMap id="empDeptMap" type="Emp">
        <id column="eid" property="eid">id>
        <result column="ename" property="ename">result>
        <result column="age" property="age">result>
        <result column="sex" property="sex">result>
        <result column="did" property="dept.did">result>
        <result column="dname" property="dept.dname">result>
    resultMap>
    
    <select id="getEmpAndDeptByEid" resultMap="empDeptMap">
        select emp.*,dept.* from t_emp emp left join t_dept dept on emp.did =
    dept.did where emp.eid = #{eid}
    select>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    b>使用association处理映射关系

    <resultMap id="empDeptMap" type="Emp">
        <id column="eid" property="eid">id>
        <result column="ename" property="ename">result>
        <result column="age" property="age">result>
        <result column="sex" property="sex">result>
        <association property="dept" javaType="Dept">
            <id column="did" property="did">id>
            <result column="dname" property="dname">result>
        association>
    resultMap>
    
    <select id="getEmpAndDeptByEid" resultMap="empDeptMap">
        select emp.*,dept.* from t_emp emp left join t_dept dept on emp.did =
    dept.did where emp.eid = #{eid}
    select>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15

    c>分步查询

    1)查询员工信息

    /**
    * 通过分步查询查询员工信息 * @param eid
    * @return
    */
    Emp getEmpByStep(@Param("eid") int eid);
    
    • 1
    • 2
    • 3
    • 4
    • 5
    <resultMap id="empDeptStepMap" type="Emp">
            <id column="eid" property="eid">id>
            <result column="ename" property="ename">result>
            <result column="age" property="age">result>
            <result column="sex" property="sex">result>
            
      <association property="dept"
    select="com.test.MyBatis.mapper.DeptMapper.getEmpDeptByStep" column="did">
    association>
    resultMap>
    
    <select id="getEmpByStep" resultMap="empDeptStepMap">
        select * from t_emp where eid = #{eid}
    select>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    2)根据员工所对应的部门id查询部门信息

    /**
    * 分步查询的第二步:根据员工所对应的did查询部门信息
    * @param did
    * @return
    */
    Dept getEmpDeptByStep(@Param("did") int did);
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    
    <select id="getEmpDeptByStep" resultType="Dept">
        select * from t_dept where did = #{did}
    select>
    
    • 1
    • 2
    • 3
    • 4

    3、一对多映射处理

    a>collection

    /**
    * 根据部门id查新部门以及部门中的员工信息 * @param did
    * @return
    */
    Dept getDeptEmpByDid(@Param("did") int did);
    
    • 1
    • 2
    • 3
    • 4
    • 5
    <resultMap id="deptEmpMap" type="Dept">
            <id property="did" column="did">id>
            <result property="dname" column="dname">result>
            
            <collection property="emps" ofType="Emp">
                <id property="eid" column="eid">id>
                <result property="ename" column="ename">result>
                <result property="age" column="age">result>
                <result property="sex" column="sex">result>
            collection>
        resultMap>
        
        <select id="getDeptEmpByDid" resultMap="deptEmpMap">
            select dept.*,emp.* from t_dept dept left join t_emp emp on dept.did =
    emp.did where dept.did = #{did}
    select>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    b>分步查询

    1)查询部门信息

    /**
    * 分步查询部门和部门中的员工 * @param did
    * @return
    */
    Dept getDeptByStep(@Param("did") int did);
    
    • 1
    • 2
    • 3
    • 4
    • 5
    <resultMap id="deptEmpStep" type="Dept">
            <id property="did" column="did">id>
            <result property="dname" column="dname">result>
            <collection property="emps" fetchType="eager"
    select="com.test.MyBatis.mapper.EmpMapper.getEmpListByDid" column="did">
    collection>
        resultMap>
        
        <select id="getDeptByStep" resultMap="deptEmpStep">
            select * from t_dept where did = #{did}
    select>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    2)根据部门id查询部门中的所有员工

    /**
    * 根据部门id查询员工信息 * @param did
    * @return
    */
    List<Emp> getEmpListByDid(@Param("did") int did);
    
    • 1
    • 2
    • 3
    • 4
    • 5
    
    <select id="getEmpListByDid" resultType="Emp">
        select * from t_emp where did = #{did}
    select>
    
    • 1
    • 2
    • 3
    • 4

    分步查询的优点:可以实现延迟加载,但是必须在核心配置文件中设置全局配置信息:

    lazyLoadingEnabled:延迟加载的全局开关。当开启时,所有关联对象都会延迟加载

    aggressiveLazyLoading:当开启时,任何方法的调用都会加载该对象的所有属性。 否则,每个属性会按需加载

    此时就可以实现按需加载,获取的数据是什么,就只会执行相应的sql。此时可通过association和 collection中的fetchType属性设置当前的分步查询是否使用延迟加载,fetchType=“lazy(延迟加 载)|eager(立即加载)”

    官方地址:https://blog.xueqimiao.com/mybatis/

  • 相关阅读:
    Windows无法启动MySQL80服务(位于本地计算机)
    若依前后端分离版:增加新的登录接口,用于小程序或者APP获取token,并使用若依的验证方法
    YOLO 系列论文精读 & YOLOv4
    #! /usr/bin/env node 命令与 npm link 建立项目间软连接(一)
    基于STC12C5A60S2系列1T 8051单片机的TM1638键盘数码管模块的数码管显示应用
    PC小程序解密及反编译
    什么是APS生产排程系统?
    golang常用库包:Go依赖注入(DI)工具-wire使用
    iNFTnews | 对体育行业和球迷来说,NFT可以带来什么?
    CBAM注意力机制详解(附pytorch复现)
  • 原文地址:https://blog.csdn.net/weixin_42841433/article/details/131101648