MyBatis处理映射关系

在Mybatis实现数据处理过程中,字段名符合数据库的规则,属性一般为驼峰规则,因此字段名和属性名通常不一致,此时可以通过以下两种方式对数据库字段进行映射处理:

  • 为字段起别名,保证和实体类中的属性名一致
  • 在满足驼峰转换规则时
    在MyBatis的核心配置文件中设置一个全局配置信息mapUnderscoreToCamelCase,可以在查询表中数据时,自动将数据库字段名转换为驼峰
  • 通过resultMap进行字段映射处理

1 利用字段别名映射

List<Emp> listEmp();
    <!--通过字段别名解决字段名和属性名的映射问题--><select id="listEmp" resultType="Emp">select id, user_name as userName, pass_word as passWord, sex, dept_id as deptId from t_emp</select>

2 利用驼峰转换规则映射

在Mybatis核心配置文件中,设置全局的驼峰转换,此时框架会根据驼峰规则自动将数据库字段和实体属性进行映射。

  • 核心配置
<settings><!-- 将表中的下划线字段自动映射为驼峰命名的属性字段 --><setting name="mapUnderscoreToCamelCase" value="true"/>
</settings>
  • 数据查询
<!--通过驼峰配置,此时Mybatis框架会自动将字段和属性进行映射,如user_name映射到userName属性上。-->
<select id="listEmp" resultType="Emp">select id, user_name, pass_word, sex, dept_id from t_emp
</select>

此处resultType直接使用实体类别名,因为存在如下的配置:

<typeAliases><!--typeAlias:设置某个具体的类型的别名属性:type:需要设置别名的类型的全类名alias:设置此类型的别名若不设置此属性,该类型拥有默认的别名,即类名且不区分大小写; 若设置此属性,此时该类型的别名只能使用alias所设置的值--><!--<typeAlias type="com.giser.mybatis.bean.User"></typeAlias>--><!--<typeAlias type="com.giser.mybatis.bean.User" alias="abc"></typeAlias>--><!--以包为单位,设置改包下所有的类型都拥有默认的别名,即类名且不区分大小写--><package name="com.giser.pojo"/>
</typeAliases>

3 利用resultMap映射

 <!--resultMap设置自定义映射关系id: 自定义映射的唯一标识type: 映射的实体类类型子标签:id: 设置主键的映射关系result:设置普通字段的映射关系属性:property: 设置映射关系中实体类的属性column: 设置映射关系中表字段--><resultMap id="empMap" type="Emp"><id property="id" column="id" /><result property="userName" column="user_name" /><result property="passWord" column="pass_word" /><result property="sex" column="sex" /><result property="deptId" column="dept_id" /></resultMap><!--使用ResultMap解决字段名和属性名的映射问题--><select id="listEmp" resultMap="empMap">select * from t_emp</select>

3.1 多对一映射

3.1.1 级联映射

存在如下实体:

public class Dept {private Integer id;private String deptName;private String deptNo;// getter setter
}public class EmpDept {private Integer id;private String userName;private String passWord;private String sex;private Integer deptId;private Dept dept;// getter setter
}
List<EmpDept> listEmpDeptById(@Param("eid")Integer eid);
<select id="listEmpDeptById" resultMap="empDeptMap">select * from t_emp left join t_dept on t_emp.dept_id = t_dept.id where t_emp.id = #{eid}
</select>

此时需要级联映射,如下:

<!--通过级联属性赋值
-->
<resultMap id="empDeptMap" type="EmpDept"><id property="id" column="id" /><result property="userName" column="user_name" /><result property="passWord" column="pass_word" /><result property="sex" column="sex" /><result property="deptId" column="dept_id" /><result property="dept.id" column="id" /><result property="dept.deptName" column="dept_name" /><result property="dept.deptNo" column="dept_no" />
</resultMap>
3.1.2 使用association实现多对一映射

如员工和部门的关系就是多对一,多个员工可能在同一个部门。此时可以通过上述的级联属性赋值方式进行映射,还可以通过association处理映射关系。

<!--通过association处理多对一映射关系
-->
<resultMap id="empDeptMapTwo" type="EmpDept"><id property="id" column="id" /><result property="userName" column="user_name" /><result property="passWord" column="pass_word" /><result property="sex" column="sex" /><result property="deptId" column="dept_id" /><!--association处理多对一的映射关系property: 需要处理多对一映射关系的实体属性名javaType: 实体属性的类型--><association property="dept" javaType="Dept"><id property="id" column="id" /><result property="deptName" column="dept_name" /><result property="deptNo" column="dept_no" /></association>
</resultMap><select id="listEmpDeptById" resultMap="empDeptMapTwo">select * from t_emp left join t_dept on t_emp.dept_id = t_dept.id where t_emp.id = #{eid}
</select>
3.1.3 使用association分步查询实现多对一映射
List<EmpDept> listEmpDeptByStep(@Param("eid") Integer eid);
<!--多对一映射关系处理方式二:通过分步查询
-->
<resultMap id="empDeptMapStep" type="EmpDept"><id property="id" column="id" /><result property="userName" column="user_name" /><result property="passWord" column="pass_word" /><result property="sex" column="sex" /><result property="deptId" column="dept_id" /><!--select :设置分步查询的Sql的唯一标识(namespace.SQLId或mapper接口的全类名.方法名)column :设置分步查询的条件--><association property="dept"
select="com.giser.mapper.DeptMapper.selectEmpAndDeptByStepTwo"column="dept_id"></association>
</resultMap><select id="listEmpDeptByStep" resultMap="empDeptMapStep">select * from t_emp left join t_dept on t_emp.dept_id = t_dept.id where t_emp.id = #{eid}
</select>
/*** 分步查询第二步* @param deptId* @return*/
Dept selectEmpAndDeptByStepTwo(@Param("deptId")Integer deptId);
<select id="selectEmpAndDeptByStepTwo" resultType="Dept">select * from t_dept where id = #{deptId}
</select>
  • 延迟加载
    分步查询的优点:可以实现延迟加载,但是必须在核心配置文件中设置全局配置信息:
    lazyLoadingEnabled:延迟加载的全局开关。当开启时,所有关联对象都会延迟加载
    aggressiveLazyLoading:当开启时,任何方法的调用都会加载该对象的所有属性。 否则,每个属性会按需加载
    此时就可以实现按需加载,获取的数据是什么,就只会执行相应的sql。此时可通过association和collection中的fetchType属性设置当前的分步查询是否使用延迟加载,fetchType=“lazy(延迟加载)|eager(立即加载)”。
    在mybatis-config.xml中,开启懒加载配置
    <settings><!-- 开启延迟加载 --><setting name="lazyLoadingEnabled" value="true" /></settings>

在映射关联属性时,设置fetchType=“lazy”

    <!--多对一映射关系处理方式二:通过分步查询--><resultMap id="empDeptMapStep" type="EmpDept"><id property="id" column="id" /><result property="userName" column="user_name" /><result property="passWord" column="pass_word" /><result property="sex" column="sex" /><result property="deptId" column="dept_id" /><!--select :设置分布查询的Sql的唯一标识(namespace.SQLId或mapper接口的全类名.方法名)column :设置分布查询的条件fetchType: 延迟加载 ,只有当全局配置lazyLoadingEnabled设置为true时,fetchType=lazy才会延迟加载,否则都是立即加载fetchType="eager|lazy" eager:立即加载; lazy:延迟加载 且此处设置的优先级高于全局配置--><association property="dept"select="com.giser.mapper.DeptMapper.selectEmpAndDeptByStepTwo"column="dept_id"fetchType="lazy"></association></resultMap>

3.2 一对多映射

3.2.1 使用collection实现一对多映射

存在如下实体:

public class DeptEmp {private Integer id;private String deptName;private String deptNo;private List<Emp> emps;// getter setter
}
public class Emp {private Integer id;private String userName;private String passWord;private String sex;private Integer deptId;// getter setter
}
/*** 一对多关系查询* @param deptId* @return*/
DeptEmp selectDeptAndEmpByDeptId(@Param("deptId")Integer deptId);
<resultMap id="deptAndEmpResultMap" type="DeptEmp"><id property="id" column="id" /><result property="deptName" column="dept_name" /><result property="deptNo" column="dept_no" /><!--collection : 处理一对多关系映射property: 集合属性字段名称ofType : 表示该集合中存储的数据类型--><collection property="emps" ofType="Emp"><id property="id" column="id" /><result property="userName" column="user_name" /><result property="passWord" column="pass_word" /><result property="sex" column="sex" /></collection>
</resultMap><select id="selectDeptAndEmpByDeptId" resultMap="deptAndEmpResultMap">select * from t_dept left join t_emp on t_dept.id = t_emp.dept_id where t_dept.id = #{deptId}
</select>
3.2.2 使用分步查询实现一对多映射
DeptEmp selectDeptAndEmpByStepOne(@Param("deptId")Integer deptId);
<resultMap id="selectDeptAndEmpByStepResultMap" type="DeptEmp"><id property="id" column="id" /><result property="deptName" column="dept_name" /><result property="deptNo" column="dept_no" /><collection property="emps"
select="com.giser.mapper.EmpMapper.selectDeptAndEmpByStepTwo"column="id"></collection>
</resultMap><select id="selectDeptAndEmpByStepOne" resultMap="selectDeptAndEmpByStepResultMap">select * from t_dept where id = #{deptId}
</select>
Emp selectDeptAndEmpByStepTwo(@Param("deptId")Integer deptId);
<select id="selectDeptAndEmpByStepTwo" resultType="Emp">select * from t_emp where dept_id = #{deptId}
</select>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/211824.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

lv11 嵌入式开发 IIC(下) 20

目录 1 Exynos4412下IIC控制器介绍 1.1 总览 1.2 特征 1.3 工作框图 1.4 其他内容介绍 1.5 四种工作模式寄存器流程 2 IIC寄存器详解 2.1 概述 2.2 控制寄存器 2.3 状态寄存器 2.4 地址寄存器 2.5 数据寄存器 2.6 其他寄存器 3 MPU06050 3.1 简介 3.2 MPU6050主…

HJ103 Redraiment的走法

题目&#xff1a; HJ103 Redraiment的走法 题解&#xff1a; dfs 暴力搜索 枚举数组元素&#xff0c;作为起点如果后续节点大于当前节点&#xff0c;继续向后搜索记录每个起点的结果&#xff0c;求出最大值 public int getLongestSub(int[] arr) {int max 0;for (int i 0…

data_loader返回的每个batch的数据大小是怎么计算得到的?

data_loader是一个通用的术语&#xff0c;用于表示数据加载器或数据批次生成器。它是在机器学习和深度学习中常用的一个概念。 一、data loader 数据加载器&#xff08;data loader&#xff09;是一个用于加载和处理数据集的工具&#xff0c;它可以将数据集划分为小批次&#…

提示(Prompt)工程中提示词的开发优化基础概念学习总结

本文对学习过程进行总结&#xff0c;仅对基本思路进行说明&#xff0c;结果在不同的模型上会有差异。 提示与提示工程 提示&#xff1a;指的是向大语言模型输入的特定短语或文本&#xff0c;用于引导模型产生特定的输出&#xff0c;以便模型能够生成符合用户需求的回应。 提示…

内存学习——堆(heap)

目录 一、概念二、自定义malloc函数三、Debug运行四、heap_4简单分析4.1 heap管理链表结构体4.2 堆初始化4.3 malloc使用4.4 free使用 一、概念 内存分为堆和栈两部分&#xff1a; 栈&#xff08;Stack&#xff09;是一种后进先出&#xff08;LIFO&#xff09;的数据结构&…

AVFormatContext封装层:理论与实战

文章目录 前言一、封装格式简介1、FFmpeg 中的封装格式2、查看 FFmpeg 支持的封装格式 二、API 介绍三、 实战 1&#xff1a;解封装1、原理讲解2、示例源码 13、运行结果 14、示例源码 25、运行结果 2 四、 实战 2&#xff1a;转封装1、原理讲解2、示例源码3、运行结果 前言 A…

文章解读与仿真程序复现思路——电力系统自动化EI\CSCD\北大核心《考虑电力-交通交互的配电网故障下电动汽车充电演化特性》

这个标题涉及到电力系统、交通系统和电动汽车充电的复杂主题。让我们逐步解读&#xff1a; 考虑电力-交通交互的配电网故障&#xff1a; 电力-交通交互&#xff1a; 指的是电力系统和交通系统之间相互影响、相互关联的关系。这可能涉及到电力需求对交通流量的影响&#xff0c;反…

回溯算法之N皇后

一 什么是回溯算法 回溯算法&#xff08;Backtracking Algorithm&#xff09;是一种用于解决组合优化问题的算法&#xff0c;它通过逐步构建候选解并进行验证&#xff0c;以寻找所有满足特定条件的解。回溯算法通常应用于在给定约束条件下枚举所有可能解的问题&#xff0c;如…

Git—文件添加查看删除修改

目录 1.添加文件—场景一 2.查看.git文件 3.添加文件—场景三 4.修改文件 5.版本回退 6.撤销修改 7.删除文件 1.添加文件—场景一 在包含.git的目录下新建⼀个ReadMe文件&#xff0c;我们可以使用 git add 命令可以将文件添加到暂存 区&#xff1a; ●添加一个或多个文…

Matlab数学建模算法之小波神经网络详解

&#x1f517; 运行环境&#xff1a;Matlab &#x1f6a9; 撰写作者&#xff1a;左手の明天 &#x1f947; 精选专栏&#xff1a;《python》 &#x1f525; 推荐专栏&#xff1a;《算法研究》 &#x1f510;#### 防伪水印——左手の明天 ####&#x1f510; &#x1f497; 大家…

vue的属性

key 预期&#xff1a;number | string | boolean (2.4.2 新增) | symbol (2.5.12 新增) key 的特殊 attribute 主要用在 Vue 的虚拟 DOM 算法&#xff0c;在新旧 nodes 对比时辨识 VNodes。如果不使用 key&#xff0c;Vue 会使用一种最大限度减少动态元素并且尽可能的尝试就地…

2022蓝桥杯c组求和

题目名字 求和 题目链接 题意 输入的每个数都要两两相乘&#xff0c;然后再加起来&#xff0c;求最后总和&#xff1b; 思路 每个数乘这个数的前缀和即可 算法一&#xff1a;前缀和 实现步骤 先把前缀和写出来再写for循环每个数都乘以自己的前缀和&#xff1b; 实现步骤 直接…

存储成本降71%,怪兽充电历史库迁移OceanBase

怪兽充电作为共享充电宝第一股&#xff0c;业务增长迅速&#xff0c;以至于业务架构不停地增加组件。在验证 OceanBase 可以简化架构并带来更大的业务价值后&#xff0c;首次尝试在历史库中使用 OceanBase 替代 MySQL&#xff0c;存储成本降低 71%。本文为怪兽充电运维架构部王…

Docker 入门

Docker 入门 基础 不同操作系统下其安装包、运行环境是都不相同的&#xff01;如果是手动安装&#xff0c;必须手动解决安装包不同、环境不同的、配置不同的问题 而使用Docker&#xff0c;这些完全不用考虑。就是因为Docker会自动搜索并下载MySQL。注意&#xff1a;这里下载…

【C++】输入输出流 ⑥ ( cout 标准输出流对象 | cout 常用 api 简介 | cout.put(char c) 函数 )

文章目录 一、cout 标准输出流对象1、cout 标准输出流对象简介2、cout 常用 api 简介 二、cout.put(char c) 函数1、cout.put(char c) 函数 简介2、代码示例 - cout.put(char c) 函数 一、cout 标准输出流对象 1、cout 标准输出流对象简介 cout 是 标准输出流 对象 , 是 ostrea…

端口被占用 --- 解决方案

问题描述 加速服务启动失败&#xff0c;443端口被magentproc(1576)占用。请关掉占用443端口的程序或者尝试使用系统代理模式。 问题解决 按下 win R 打开 输入cmd 输入命令 netstat -ano | findstr 443 找到 0.0.0.0:443 对应的端口 (1576) 按下 ctrl shift esc, 打开任务管…

综述 2023-IEEE-TCBB:生物序列聚类方法比较

Wei, Ze-Gang, et al. "Comparison of methods for biological sequence clustering." IEEE/ACM Transactions on Computational Biology and Bioinformatics (2023). https://ieeexplore.ieee.org/document/10066180 被引次数&#xff1a;1&#xff1b;研究背景&am…

力扣题:数字与字符串间转换-12.13

力扣题-12.13 [力扣刷题攻略] Re&#xff1a;从零开始的力扣刷题生活 力扣题1&#xff1a;442. 数组中重复的数据 解题思想&#xff1a;直接相除即可 class Solution(object):def optimalDivision(self, nums):""":type nums: List[int]:rtype: str"&qu…

Transformer 简介

Transformer 是 Google 在 2017 年底发表的论文 Attention Is All You Need 中所提出的 seq2seq 模型。Transformer 模型的核心是 Self-Attention 机制&#xff0c;能够处理输入序列中的每个元素&#xff0c;并能计算其与序列中其他元素的交互关系的方法&#xff0c;从而能够更…

再见了Future,图解JDK21虚拟线程的结构化并发

Java为我们提供了许多启动线程和管理线程的方法。在本文中&#xff0c;我们将介绍一些在Java中进行并发编程的选项。我们将介绍结构化并发的概念&#xff0c;然后讨论Java 21中一组预览类——它使将任务拆分为子任务、收集结果并对其进行操作变得非常容易&#xff0c;而且不会不…