mybatis嵌套查询和嵌套结果,
目录
米巴提斯一对多的可扩展标记语言配置嵌套查询嵌套结果一对多关联查询可扩展标记语言配置写法情景概述创建表对应java Pojo查询客户表客户获取客户名下的附件信息查询客户附件表客户端文件获取附件所属的客户信息小结一下
MyBatis一对多的xml配置
用的是窗户上面的画图板,没法以文字的方式展示出来,见谅
嵌套查询
嵌套结果
一对多关联查询xml配置写法
情景概述
1、有一张客户表客户,存储客户信息,姓名姓名,年龄年龄等。
2、有一张客户附件表客户端文件,存储客户附件信息,附件名姓名,路径小路等,其中通过外键客户端编号关联到客户表,获取附件对应的客户信息。
3、需求如下:
查询某个客户时,获取客户名下的所有附件信息。 (一对多查询)查询某个附件时,获取附件所属的客户信息。 (一对一查询)
创建表
1、创建客户表,并插入数据
SET FOREIGN _ KEY _ CHECKS=0;- -客户端的表结构- -如果存在"客户端",则删除表;创建表` client `(` id ` int(11)NOT NULL AUTO _ INCREMENT注释编号, name varchar(255)默认空注释姓名, age int(255)默认空注释年龄,主键(` id `))ENGINE=InnoDB AUTO _ INCREMENT=4默认字符集=utf8- -客户记录- -插入客户值( 1 ,小明, 18);插入到"客户端"值( 2 ,小红, 22);插入到"客户端"值( 3 ,小刚, 27);2、创建客户端文件表,并插入数据
SET FOREIGN _ KEY _ CHECKS=0;- -客户端文件的表结构- -如果存在"客户端文件",则删除表;创建表` client _ file `(` id ` int(11)NOT NULL AUTO _ INCREMENT注释编号, name varchar(255)默认空注释附件名, path varchar(255)默认空注释附件路径, client _ id int(11)默认空注释客户id ,主键(` id `),键`客户端标识`(`客户端标识`),约束`客户标识外键(` client_id `)引用` client `(` id `))ENGINE=InnoDB AUTO _ INCREMENT=5 DEFAULT CHARSET=utf8;- -客户端文件的记录- -插入客户端文件值( 1 ,小明电影,/usr/local/子弹飞.mp4 , 1 );插入到"客户端文件"值( 2 ,小明简历,/usr/doc/小明. docx , 1 );移民归化局
ERT INTO `client_file` VALUES (3, 小明代码, /usr/code/main.java, 1);INSERT INTO `client_file` VALUES (4, 小红靓照, E:\image\xiaohong.jpg, 2);3、关系如下:
对应 java Pojo
1、client表对应 Client.java
public class Client2 implements Serializable {private static final long serialVersionUID = 1L;private String id;private String name;// 姓名private String age;// 年龄private List<ClientFile> clientFileList ; // 客户名下的附件 list// ======= ignore getter,setter ========= // }
2、client_file表对应 ClientFile.java
public class ClientFile implements Serializable {private static final long serialVersionUID = 1L;private String id; private String path;// 附件路径private String clientId;// 客户idprivate Client clientInfo ; // 客户信息// ======= ignore getter,setter ========= // }
查询 客户表client 获取客户名下的附件信息
1、方法一: 使用一个结果集实现获取client表客户关联的附件信息(错误方法)
1.1、 resultMap 定义:
<resultMap type="Client" id="clientMapError"><id property="id" column="id"/><result property="name" column="name"/><result property="age" column="age"/><collection property="clientFileList" ofType="ClientFile"><id property="id" column="id"/><result property="name" column="name"/><result property="path" column="path"/><result property="clientId" column="client_id"/></collection></resultMap>
1.2、SQL查询代码:
<select id="getMapError" resultMap="clientMapError" parameterType="Client">SELECT a.id , a.name , a.age ,cf.id, cf.name , cf.path , cf.client_id FROM client aLEFT JOIN client_file cf on cf.client_id = a.id WHERE a.id = #{id}</select>
1.3、测试:获取客户id=1的客户名下附件,查询结果如下JSON:
1.4、原因分析:通过查看client_file表,client_id=1,对应有3个附件,而本次查询中只查到了一个附件,且client_file表中id=1的name值为"小明电影"。可以看到 client表和client_file表中有共同字段id,name 在映射的时候将client表中数据映射到 client_file表中去了,解决这一问题,需要将 client_file表中重名字段做别名处理。
2、方法一: 使用一个结果集实现获取client表客户关联的附件信息。(重名字段做别名处理)
2.1、 resultMap 定义:
<resultMap type="Client" id="clientMap"><id property="id" column="id"/><result property="name" column="name"/><result property="age" column="age"/><collection property="clientFileList" ofType="ClientFile"><id property="id" column="fileId"/><result property="name" column="fileName"/><result property="path" column="path"/><result property="clientId" column="client_id"/></collection></resultMap>
2.2、SQL 查询代码:
<select id="getMap" resultMap="clientMap" parameterType="Client">SELECT a.id , a.name , a.age ,cf.id AS "fileId", cf.name AS "fileName" , cf.path , cf.client_id FROM client aLEFT JOIN client_file cf on cf.client_id = a.id WHERE a.id = #{id}</select>
2.3、测试:获取客户 id=1 的客户名下附件,查询结果如下JSON:
3、方法二:使用多个结果集实现获取client表客户关联的附件信息。(重名字段不做别名处理)
3.1、resultMap 定义:
<resultMap type="Client" id="clientMap2"><id property="id" column="id"/><result property="name" column="name"/><result property="age" column="age"/><!-- column: 对应的外键。 client表的id是client_file表的 外键 --><collection property="clientFileList" ofType="ClientFile" column="id" select="getClientFileList"></collection></resultMap>
3.2、SQL查询代码:
<select id="getMap2" resultMap="clientMap2" parameterType="Client"> SELECT a.id , a.name , a.age FROM client a WHERE id = #{id}</select> <select id="getClientFileList" resultType="ClientFile" parameterType="int">SELECT b.id , b.name , b.path , b.client_idFROM client_file bWHERE client_id = #{id}</select>
3.3、获取客户 id=2 的客户名下附件,查询结果如下JSON:
查询 客户附件表 client_file 获取附件所属的客户信息
1、方法一:使用一个结果集实现获取client_file表所属的客户信息(错误方法)
1.1、resultMap 定义:
<resultMap type="ClientFile" id="clientFileMapError"><id property="id" column="id"/><result property="name" column="name"/><result property="path" column="path"/><result property="clientId" column="client_id"/><association property="clientInfo" javaType="Client"><id property="id" column="id"/><result property="name" column="name"/><result property="age" column="age"/></association></resultMap>
1.2、SQL查询代码:
<select id="getMapError" resultMap="clientFileMapError" parameterType="ClientFile">SELECT cf.id , cf.name , cf.path ,cf.client_id, a.id , a.name , ageFROM client_file cf LEFT JOIN client a on a.id = cf.client_idWHERE cf.id = #{id}</select>
1.3、测试:获取附件表 id=3 的附件所属客户信息,查询结果如下JSON:
1.4、原因分析:通过查看client_file表id=3,对应client_id为1,而查询到的clientInfo对象中id=3,name="小明代码",这里和client表中的数据不对,原因同上----字段对应属性值映射错误。解决这个问题,需要将重名字段进行别名处理。
2、方法一:使用一个结果集实现获取client_file表所属的客户信息。(重名字段别名处理)
2.1、resultMap 定义:
<resultMap type="ClientFile" id="clientFileMap"><id property="id" column="id"/><result property="name" column="name"/><result property="path" column="path"/><result property="clientId" column="client_id"/><association property="clientInfo" javaType="Client"><id property="id" column="c_id"/><result property="name" column="clientName"/><result property="age" column="age"/></association></resultMap>
2.2、SQL查询代码:
<select id="getMap" resultMap="clientFileMap" parameterType="ClientFile">SELECT cf.id , cf.name , cf.path ,cf.client_id, a.id AS "c_id" , a.name AS "clientName", ageFROM client_file cf LEFT JOIN client a on a.id = cf.client_idWHERE cf.id= #{id}</select>
2.3、测试:获取附件表 id=2 的附件所属客户信息,查询结果如下JSON:
3、方法二:使用多个结果集实现获取client_file表所属的客户信息(重名字段不处理)
3.1、resultMap 定义:
<resultMap type="ClientFile" id="clientFileMap2"><id property="id" column="id"/><result property="name" column="name"/><result property="path" column="path"/><result property="clientId" column="client_id"/><association property="clientInfo" column="client_id" select="getClientInfo"></association></resultMap>
3.2、SQL查询代码:
<select id="getMap2" resultMap="clientFileMap2" parameterType="ClientFile">SELECT cf.id , cf.name , cf.path ,cf.client_idFROM client_file cf WHERE cf.id= #{id}</select><select id="getClientInfo" resultType="Client" parameterType="int">SELECTid , name ,age FROM client WHERE id = #{id}</select>
3.3、获取附件表 id=4 的附件所属客户信息,查询结果如下JSON:
小结一下
1、MyBatis中一对多关联查询使用 <collection> 标签来实现关联,主要属性作用如下:
property
:java对象名称ofType
:java对象的类型column
:当前表对应的外键字段名称select
:另一个数据集的名称2、MyBatis中一对一关联查询使用 <association> 标签来实现关联,主要属性作用如下:
property
:java对象名称javaType
:java对象类型colmun
:当前表对应的外键字段名称seelct
:另一个数据集的名称3、使用一个数据集时,注意关联表之间的字段是否有重名情况,若有重名,需要别名处理。
4、使用多个数据集时,无需关注字段重名情况。
5、一个 resultMap标签可以配置多个<collection>标签和<association>标签。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持盛行IT。
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。