八、自定义映射resultMap

news/2025/3/15 12:10:42/

八、自定义映射resultMap

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

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

<!--
resultMap:设置自定义映射
属性:
id:表示自定义映射的唯一标识 type:查询的数据要映射的实体类的类型 子标签:
id:设置主键的映射关系 result:设置普通字段的映射关系 association:设置多对一的映射关系 collection:设置一对多的映射关系
属性: property:设置映射关系中实体类中的属性名 column:设置映射关系中表中的字段名
-->
<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>
<!--List<User> testMohu(@Param("mohu") String mohu);-->
<select id="testMohu" resultMap="userMap"><!--select * from t_user where username like '%${mohu}%'-->select id,user_name,password,age,sex from t_user where user_name like
concat('%',#{mohu},'%')
</select>

若字段名和实体类中的属性名不一致,但是字段名符合数据库的规则(使用_),实体类中的属性 名符合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>
<!--Emp getEmpAndDeptByEid(@Param("eid") int eid);-->
<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>

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>
<!--Emp getEmpAndDeptByEid(@Param("eid") int eid);-->
<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>

c>分步查询

1)查询员工信息

/**
* 通过分步查询查询员工信息 * @param eid
* @return
*/
Emp getEmpByStep(@Param("eid") int eid);
<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><!--
select:设置分步查询,查询某个属性的值的sql的标识(namespace.sqlId)
column:将sql以及查询结果中的某个字段设置为分步查询的条件 --><association property="dept"
select="com.test.MyBatis.mapper.DeptMapper.getEmpDeptByStep" column="did">
</association>
</resultMap>
<!--Emp getEmpByStep(@Param("eid") int eid);-->
<select id="getEmpByStep" resultMap="empDeptStepMap">select * from t_emp where eid = #{eid}
</select>

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

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

3、一对多映射处理

a>collection

/**
* 根据部门id查新部门以及部门中的员工信息 * @param did
* @return
*/
Dept getDeptEmpByDid(@Param("did") int did);
<resultMap id="deptEmpMap" type="Dept"><id property="did" column="did"></id><result property="dname" column="dname"></result><!--
ofType:设置collection标签所处理的集合属性中存储数据的类型 --><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><!--Dept getDeptEmpByDid(@Param("did") int did);--><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>

b>分步查询

1)查询部门信息

/**
* 分步查询部门和部门中的员工 * @param did
* @return
*/
Dept getDeptByStep(@Param("did") int did);
<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><!--Dept getDeptByStep(@Param("did") int did);--><select id="getDeptByStep" resultMap="deptEmpStep">select * from t_dept where did = #{did}
</select>

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

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

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

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

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

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

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


http://www.ppmy.cn/news/274762.html

相关文章

js中断 forEach 循环的几种方法

1、使用 Array.prototype.some() 方法代替 some() 方法会在找到第一个符合条件的元素时停止循环。 例如&#xff1a; let array [1, 2, 3, 4, 5]; array.some(function(element, index, array) {if (element 3) {console.log("Found 3 at index " index);retur…

大型城市综合体建筑智能消防应急照明和疏散系统的具体应用 安科瑞 许敏

摘要&#xff1a;随着我国社会经济的迅猛发展与城市化建设进程的加快&#xff0c;大型城市综合体建筑越来越多&#xff0c;随之而来的消防安全管理问题不容忽视。智能消防应急照明和疏散系统作为保证人员安全疏散不可或缺的消防设施&#xff0c;是保障消防安全的重要组成部分。…

fx5800p编程教程_常见的CASIO fx5800P基本功能及编程学习.ppt

常见的CASIO fx5800P基本功能及编程学习 2006年10月上市 fx-4850P升级机型 一、特点 与fx-4000系列工程机比较&#xff1a; ① 内存容量——28500字节闪存 不需备用电池保存机内程序与数据 取出电池也不会丢失内存的程序与数据 ② 类结构化BASIC语言 ③ 串列存储统计数据 ④ 数…

串口调试助手读写三菱fx3u数据_通过FX3U-485-BD实现PLC和计算机的RS485通信

在挑残机项目中&#xff0c;主站需要记录PLC(FX3U-128MT)的错误报警信息&#xff0c;故需要在PLC和主站PC间进行通信&#xff0c;且PLC和主站PC间距离较长&#xff0c;考虑到RS232最远通信距离为15m不能达到我们的要求&#xff0c;在本项目中使用RS485进行通信。 一&#xff0e…

FX3学习笔记3-i2c

一、实验环境 硬件平台&#xff1a;CYUSB3KIT-003 EZ-USB FX3™ SuperSpeed Explorer Kit sdk版本&#xff1a;EZ-USB FX3 SDK1.3 / SuperSpeed Explorer Kit 1.0 实验例程&#xff1a;cyfxuvc_an75779&#xff08;cypress官网下载demo&#xff09; i2c设备&#xff1a;lsm6…

MQTT.fx脚本Scripts使用

陈拓 chentuoms.xab.ac.cn 2020/02/10-2020/02/10 1. 概述 MQTT.fx官方网站&#xff1a;http://mqttfx.jensd.de/ MQTT.fx的基本用法请看《MQTTfx连接物联网云平台》一文&#xff1a;https://zhuanlan.zhihu.com/p/101104351 本文讲述MQTT.fx的高级用法&#xff0c;通过js脚…

三菱模拟量fx3u4da_模拟量输出模块FX3U-4DA手册三菱FX3U-4DA安装使用手册 - 广州凌控...

三菱变频器FR-F720系列。 电压等级&#xff1a;三相200V。 变频器容量&#xff1a;15KW。 采用变频器运转时&#xff0c;电机的起动电流、起动转矩怎样&#xff1f; 采用变频器运转&#xff0c;随着电机的加速相应提高频率和电压&#xff0c; 起动电流被限制在150%额定电流以下…

三菱fx1n40mr001接线图_三菱FX1N-14MR-001使用说明书FX1N-14MR-001手册 - 广州凌控

功率:15kw。 用途:高频制动电阻器。 可提升变频器内置再生制动器的使用率 当使用FR-ABR型制动电阻器时,拆除端子PR-PX之间的短路片。不拆除短路片将导致制动电阻器出现过热FX1N-14MR-001使用说明书。 再生制动使用率设定应小于上表中的容许制动使用率。 制动电阻器的温度随着…