自定义映射resultMap

resultMap处理字段和属性的映射关系如果字段名与实体类中的属性名不一致,该如何处理映射关系?

  • 第一种方法:为查询的字段设置别名,和属性名保持一致
    下面是实体类中的属性名:
    private Integer empId;private String empName;private Integer age;private String gender;这是建表时设置的字段名:
    emp_idemp_nameagegender我们只需要在Mapper.xml中在写sql语句时,对字段名进行设置别名,使得与属性名一致:
    select emp_id empId,emp_name empName,age,gender from t_emp where emp_id = #{empId}
  • 第二种方法:当字段符合Mysql要求使用下划线,而属性名符合Java要求使用驼峰,此时可以在Mybatis的核心配置文件中设置一个全局配置信息mapUnderscoreToCamelCase,就可以在查询表中数据时,自动将下划线类型的字段名转换为驼峰 。
    <settings><!--将下划线映射为驼峰--><setting name="mapUnderscoreToCamelCase" value="https://www.huyubaike.com/biancheng/true"/> </settings>
  • 第三种方法:使用resultMap处理
    <!--resultMap:设置自定义的映射关系id:唯一标识type:处理映射关系的实体类的类型常用标签:id:处理主键和实体类中属性的映射关系result:处理普通字段和实体类中属性的映射关系column:设置映射关系中的字段名,必须是sql查询出的某个字段property:设置映射关系中的属性的属性名,必须是处理实体类型类型中的属性名--><resultMap id="empResultMap" type="Emp"><id column="emp_id" property="empId"></id><result column="emp_name" property="empName"></result><result column="age" property="age"></result><result column="gender" property="gender"></result></resultMap><!-- Emp getEmpByEmpId(@Param("empId") Integer emId);--><select id="getEmpByEmpId" resultMap="empResultMap">select * from t_emp where emp_id = #{empId}</select>
多对一的映射关系1.级联方式处理映射关系当Emp实体类中具有Dept对象,但是字段中不存在这个属性,我们需要将Dept对象中的属性与查询的字段名建立映射关系 。
<resultMap id="empAndDeptResultMap" type="Emp"><id column="emp_id" property="empId"></id><result column="emp_name" property="empName"></result><result column="age" property="age"></result><result column="gender" property="gender"></result><result column="dept_id" property="dept.deptId"></result><result column="dept_name" property="dept.deptName"></result></resultMap><select id="getEmpAndDeptByEmpId" resultMap="empAndDeptResultMap">select t_emp.*,t_dept.*from t_emp left join t_dept on t_emp.dept_id = t_dept.dept_idwhere t_emp.emp_id = #{empId}</select>2.使用association处理映射关系
  • association:处理多对一的映射关系(处理实体类类型的属性)
  • property:设置需要处理映射关系的属性的属性名
  • javaType:设置要处理的属性的类型
<resultMap id="empAndDeptResultMap" type="Emp"><id column="emp_id" property="empId"></id><result column="emp_name" property="empName"></result><result column="age" property="age"></result><result column="gender" property="gender"></result><association property="dept" javaType="Dept"><id column="dept_id" property="deptId"></id><result column="dept_name" property="deptName"></result></association></resultMap>3.分步查询