mybatis-5-关联查询
外键查询
1、回忆外键约束
注意要在tbl_dept中添加外键
#添加外键约束
# 此处Employee为外键表,dept为主键表
# 删除Employee的数据不会影响dapt,而删除dept一定会影响employee,这是为了保证数据的一致性
alter table tbl_employee add constraint fk_emp_dept
foreign key (d_id) references tbl_dept(id);
2、sql的关联查询
SELECT e.`id` id,e.gender gender,e.`last_name` last_name,e.`email` email, e.`d_id` d_id ,d.`dept_name`
FROM tbl_employee e,tbl_dept d
WHERE e.d_id = d.id
AND e.id = 4;
3、resultMap关联查询
== 一定要注意的是:association使用的是javaType,collection使用的是ofType,如果他们使用的是分步查询,那么这两个属性都不需要写 ==
使用assocition映射封装(多对一)javaType
(不使用外键情况下)
<resultMap id="EmployeeMap" type="Employee">
<id column="id" property="id"/>
<result column="last_name" property="lastName"/>
<result column="gender" property="gender"/>
<result column="email" property="email"/>
<!--property为联级类的名字,javaType为联级类的类别-->
<association property="department" javaType="Department">
<id column="did" property="id"/>
<result column="dept_name" property="departmentName"/>
</association>
</resultMap>
<select id="getEmployeeList" resultMap="EmployeeMap">
select e.id,e.last_name,e.gender,e.email,d.id did,d.dept_name
from tbl_employee e,tbl_dept d
where e.d_id = d.id;
</select>
使用assocition分步查询(多对一)
查询员工时把员工的部门也查询出来
主要使用在数据查询很大的时候:
- 分布查询可以做到使用现有接口方法来达到实现封装的目的
- 分布查询可以实现延时加载,节省资源
<!--使用resultMap分步查询-->
<!--1、先按照员工id查询员工信息
2、根据员工信息中的d_id值去查出部门信息
3、部门设置到员工中
-->
<resultMap id="EmployeeMapStep" type="Employee">
<id column="id" property="id"/>
<result column="last_name" property="lastName"/>
<result column="gender" property="gender"/>
<result column="email" property="email"/>
<!--association定义关联对象的封装规则、
select:指明当前属性是调用哪个方法查出的结果
column:指定将哪一列的值传给方法
流程:使用select指定的方法(传入column指定的值)查除对象,把地址赋值给原来封装对象的相关属性
-->
<association property="department"
select="com.wang.Dao.DepartmentMapper.getDepartmentById"
column="d_id"/>
</resultMap>
<!-- Employee getEmployeeById(Integer id);-->
<select id="getEmployeeById" resultMap="EmployeeMapStep">
select * from tbl_employee where id =#{id};
</select>
使用collection实现映射封装(一对多)ofType
查询部门的时候把部门内包含的员工也查询出来
接口:
public interface DepartmentMapper {
Department getDepartmentById(Integer id);
}
bean类
private int id;
private String departmentName;
private List<Employee> employeeList;
Mapper配置文件中
<resultMap id="DepartmentMap" type="Department">
<id column="did" property="id"/>
<result column="dept_name" property="departmentName"/>
<!--collection定义关联集合类型的封装规则-->
<!--我们需要把用did查询到的数据封装成Lst对像-->
<!--
property:属性名称
ofType:指定集合里面的元素
-->
<collection property="employeeList" ofType="Employee">
<!--定义这个集合元素中的封装规则-->
<id column="eid" property="id"/>
<result column="gender" property="gender"/>
<result column="last_name" property="lastName"/>
<result column="email" property="email"/>
</collection>
</resultMap>
<select id="getDepartmentById" resultMap="DepartmentMap">
select d.id did,d.dept_name,e.id eid,e.last_name,e.gender,e.email
from tbl_dept d
left join tbl_employee e
on d.id = e.d_id
where d.id = #{id};
</select>
在分布查询基础上实现延时加载
之前我们在查询Employee对象时,内部的属性都将被查询出来
单这样将占用大量内存
我们需要做到:部门信息在我们需要的时候再起查询
这个时候我们只需要在分步查询的基础在全局配置上加上两个配置
<!--开启懒加载,在需要的时候才会读取数据 -->
<setting name="lazyLoadingEncoding" value="true"/>
<!--关闭强制加载,即关闭在加载实例的时候就读取全部数据-->
<setting name="aggressiveLazyLoading" value="false"/>
或者:在collection和association标签上加上fetch属性即可
<association property="department" //不需要oftype属性
select="com.wang.Dao.DepartmentMapper.getDepartmentById"
column="{id = d_id}"
fetchType="lazy"/>
<!--fetchType表示获取数据的方式
lazy:懒加载
eager:立即加载
-->
分步查询拓展-传入多个参数
有时候需要把多个字段值传入调用的方法
做法:将多个字段的值封装成Map传递
注意点:键一定要是传入方法的参数名
column="{id = d_id,name = dept_name}"
4、discriminator鉴别器使用(进行简单的判断操作)
鉴别器:mybatis可以使用discriminator判断某列的值,然后根据某列的值改变封装的行为
现在有这样的需求:
如果查出来是女生,就把部门信息查询出来,否则不查询
如果查出来是男生,就把last_name这一字段的值赋值给email
注意点:case里的javatype或者说javaMap不可或缺,如果加入javaMap则表示在这个case情况下我们调用另外一种sql映射规则
<mapper namespace="com.wang.Dao.EmployeeMapper">
<!-- //获取全部员工的信息-->
<!-- Employee getEmployeeById(int id);-->
<resultMap id="EmployeeMap" type="Employee">
<!--column:指定判定的列名
javaType:列名对应的java类型,注意开头因为经过转换所以为小写-->
<discriminator javaType="string" column="gender">
<!--1是男生-->
<case value="男" resultType="com.wang.Pojo.Employee">
<id column="id" property="id"/>
<result column="email" property="lastName"/>
<result column="gender" property="gender"/>
<result column="last_name" property="email"/>
<!-- <association property="department"
select="com.wang.Dao.DepartmentMapper.getDepartmentByDid"
column="d_id"/>-->
</case>
<!--0是女生-->
<case value="女" resultType="com.wang.Pojo.Employee">
<id column="id" property="id"/>
<result column="last_name" property="lastName"/>
<result column="gender" property="gender"/>
<result column="email" property="email"/>
<association property="department"
select="com.wang.Dao.DepartmentMapper.getDepartmentByDid"
column="d_id"/>
</case>
</discriminator>
</resultMap>
mybatis-5-关联查询的更多相关文章
- Mybatis之关联查询
一.一对一关联 1.1.提出需求 根据班级id查询班级信息(带老师的信息) 1.2.创建表和数据 创建一张教师表和班级表,这里我们假设一个老师只负责教一个班,那么老师和班级之间的关系就是一种一对一的关 ...
- SpringBoot+Mybatis实现关联查询
SpringBoot+Mybatis实现关联查询 今天学习了下Mybatis的动态查询,然后接着上次的Demo改造了下实现表的关联查询. 话不多说,开始今天的小Demo 首先接着上次的项目 https ...
- Mybatis之关联查询及动态SQL
前言 实际开发项目中,很少是针对单表操作,基本都会联查多表进行操作,尤其是出一些报表的内容.此时,就可以使用Mybatis的关联查询还有动态SQL.前几篇文章已经介绍过了怎么调用及相关内容,因此这里只 ...
- JavaWeb_(Mybatis框架)关联查询_六
系列博文: JavaWeb_(Mybatis框架)JDBC操作数据库和Mybatis框架操作数据库区别_一 传送门 JavaWeb_(Mybatis框架)使用Mybatis对表进行增.删.改.查操作_ ...
- mybatis一对一关联查询——(八)
1.需求 查询所有订单信息,关联查询下单用户信息. 注意: 因为一个订单信息只会是一个人下的订单,所以从查询订单信息出发关联查询用户信息为一对一查询.如果从用户信息出发查询用户下的订单信息则为一对多查 ...
- Mybatis一对一关联查询
有两张表,老师表teacher和班级表class,一个class班级对应一个teacher,一个teacher对应一个class 需求是根据班级id查询班级信息(带老师的信息) 创建teacher和c ...
- MyBatis学习(四)MyBatis一对一关联查询
一对一关联查询即.两张表通过外键进行关联.从而达到查询外键直接获得两张表的信息.本文基于业务拓展类的方式实现. 项目骨架 配置文件conf.xml和db.properties前几节讲过.这里就不细说了 ...
- SSM-MyBatis-15:Mybatis中关联查询(多表操作)
------------吾亦无他,唯手熟尔,谦卑若愚,好学若饥------------- 先简单提及一下关联查询的分类 1.一对多 1.1单条SQL操作的 1.2多条SQL操作的 2.多对一 2.1单 ...
- Mybatis的关联查询(一)
一对一的关联查询 一.使用resultType进行输出映射 1. 创建一个新的PO类,由于要将查询出来的属性映射到新的PO类.所有该PO类中应该有查询出来的所有列对应的属性. //定义新的PO类, ...
- MyBatis的关联查询
关联映射的一对多 //查询经理角色 以及 该角色下对应的员工集合 public SmbmsRole getRoleAndUser(Integer id); <resultMap id=" ...
随机推荐
- Relay张量集成
Relay张量集成 Introduction NVIDIA TensorRT是一个用于优化深度学习推理的库.这种集成将尽可能多地减轻从中继到TensorRT的算子,在NVIDIA GPU上提供性能提升 ...
- Servlet--核心内容汇总
Servlet汇总 因为看公司代码,有个cookie+jwt.Token登录验证接口,于是回顾下servlet.cookie.session.前后端分离restful.jwt.token相关内容.虽然 ...
- 【linux】驱动-12-并发与竞态
目录 前言 12. 并发&竞态 12.1 并发&竞态概念 12.2 竞态解决方法 12.3 原子 12.3.1 原子介绍 12.3.2 原子操作步骤 12.3.3 原子 API 12. ...
- python实现机器学习笔记
#课程链接 https://www.imooc.com/video/20165 一.机器学习介绍以及环境部署 1.机器学习介绍及其原理 1)什么是人工智能 人工智能就其本质而言,是机器对人的思维信息过 ...
- Linux查看与设定别名
1.alias :查看系统中所有的命令别名 2.设定别名 alias 别名='原命令' 3.删除别名 unalias 别名 4.使别名永久生效 vi ~/.bashrc 写入这个文件中即可永 ...
- Centos7 unzip文件名中文乱码
Centos7 unzip文件名中文乱码 前言 今天在批量处理windos文件时为了方便操作,将windos下面的文件夹打成zip包上传至centos7中解压处理,发现解压后中文文件名变成了乱码,如下 ...
- 通过jquery创建节点以及节点属性处理
<!DOCTYPE html><html> <head> <meta http-equiv="Content-type" conte ...
- 乘风破浪,.Net Core遇见Dapr,为云原生而生的分布式应用运行时
Dapr是一个由微软主导的云原生开源项目,国内云计算巨头阿里云也积极参与其中,2019年10月首次发布,到今年2月正式发布V1.0版本.在不到一年半的时间内,github star数达到了1.2万,超 ...
- jenkins+nexus上传插件发布制品到nexus
nexus安装 nexus安装参考:https://www.cnblogs.com/afei654138148/p/14974124.html nexus配置 创建制品库 制品库URL:http:// ...
- 关于使用Flex中图片处理
<?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="ht ...