SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for client
-- ----------------------------
DROP TABLE IF EXISTS `client`;
CREATE TABLE `client` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号',
`name` varchar(255) DEFAULT NULL COMMENT '姓名',
`age` int(255) DEFAULT NULL COMMENT '年龄',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of client
-- ----------------------------
INSERT INTO `client` VALUES ('1', '小明', '18');
INSERT INTO `client` VALUES ('2', '小红', '22');
INSERT INTO `client` VALUES ('3', '小刚', '27');
2、创建 client_file 表,并插入数据
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for client_file
-- ----------------------------
DROP TABLE IF EXISTS `client_file`;
CREATE TABLE `client_file` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号',
`name` varchar(255) DEFAULT NULL COMMENT '附件名',
`path` varchar(255) DEFAULT NULL COMMENT '附件路径',
`client_id` int(11) DEFAULT NULL COMMENT '客户id',
PRIMARY KEY (`id`),
KEY `client_id` (`client_id`),
CONSTRAINT `client_id` FOREIGN KEY (`client_id`) REFERENCES `client` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of client_file
-- ----------------------------
INSERT INTO `client_file` VALUES ('1', '小明电影', '/usr/local/子弹飞.mp4', '1');
INSERT INTO `client_file` VALUES ('2', '小明简历', '/usr/doc/小明.docx', '1');
INSERT 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; // 客户id
private Client clientInfo ; // 客户信息
// ======= ignore getter,setter ========= //
}
四、查询 客户表client 获取客户名下的附件信息
1、方法一: 使用一个结果集实现获取client表客户关联的附件信息。(重名字段做别名处理)
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>
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 a
LEFT JOIN client_file cf on cf.client_id = a.id
WHERE a.id = #{id}
</select>
测试:获取客户 id=1 的客户名下附件,查询结果如下JSON:
2、方法二:使用多个结果集实现获取client表客户关联的附件信息。(重名字段不做别名处理)
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>
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_id
FROM client_file b
WHERE client_id = #{id}
</select>
获取客户 id=2 的客户名下附件,查询结果如下JSON:
五、查询 客户附件表 client_file 获取附件所属的客户信息
1、方法一:使用一个结果集实现获取client_file表所属的客户信息。(重名字段别名处理)
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>
SQL查询代码:
<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>
测试:获取附件表 id=2 的附件所属客户信息,查询结果如下JSON:
2、方法二:使用多个结果集实现获取client_file表所属的客户信息(重名字段不处理)
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>
SQL查询代码:
<select id="getMap2" resultMap="clientFileMap2" parameterType="ClientFile">
SELECT
cf.id , cf.name , cf.path ,cf.client_id
FROM client_file cf
WHERE cf.id= #{id}
</select>
<select id="getClientInfo" resultType="Client" parameterType="int">
SELECT
id , name ,age
FROM client
WHERE id = #{id}
</select>
获取附件表 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>标签。
参考资料: https://www.cnblogs.com/xdp-gacl/p/4264440.html