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>
<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.分步查询- 首先查询员工的信息
/*** 通过分步查询员工的信息* @param empId* @return*/Emp getEmpAndDeptByStepOne(@Param("empId") Integer empId);
<resultMap id="empAndDeptByStepResultMap" 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><!--select:设置分步查询,查询某个属性的值的sql标识(namespace.sqlId)column:将sql以及查询结果中的某个字段设置为分步查询的条件--><association property="dept"select="com.atguigu.mybatis.mapper.DeptMapper.getEmpAndDeptByStepTwo"column="dept_id"></association></resultMap><!--Emp getEmpAndDeptByStepOne(@Param("empId") Integer empId);--><select id="getEmpAndDeptByStepOne" resultMap="empAndDeptByStepResultMap">select * from t_emp where emp_id = #{empId}</select>
- 根据员工所对应的部门id查询部门信息
/*** 分步查询第二步:根据员工所对应的id查询部门信息* @param deptId* @return*/Dept getEmpAndDeptByStepTwo(@Param("deptId") Integer deptId);
推荐阅读
- OpenDataV低代码平台增加自定义属性编辑
- vue3 自定义指令控制按钮权限
- 自定义铃声怎么删除不了 自定义铃声怎么删除
- lol自定义怎么无限金币 lol自定义怎么调无限火力
- excel2007编辑自定义列表 excel2007下拉列表
- ai自定义快捷键如何导入 AI如何自定义快捷键
- 代练丸子怎么自定义发单 代练丸子怎么自定义价格
- wps表格排序怎么自定义排列顺序 wps表格排序
- 如何在新浪微博设置自定义背景
- Excel自定义序列操作过程 excel自定义序列