MyBatis一对一关联查询

一对一级联关系在现实生活中是十分常见的,例如一个大学生只有一个学号,一个学号只属于一个学生。同样,人与身份证也是一对一的级联关系。

在 MyBatis 中,通过 <resultMap> 元素的子元素 <association> 处理一对一级联关系。示例代码如下。

  • <association property="studentCard" column="cardId"
  • javaType="net.biancheng.po.StudentCard"
  • select="net.biancheng.mapper.StudentCardMapper.selectStuCardById" />

在 <association> 元素中通常使用以下属性。

  • property:指定映射到实体类的对象属性。
  • column:指定表中对应的字段(即查询返回的列名)。
  • javaType:指定映射到实体对象属性的类型。
  • select:指定引入嵌套查询的子 SQL 语句,该属性用于关联映射中的嵌套查询。

一对一关联查询可采用以下两种方式:

  • 单步查询,通过关联查询实现
  • 分步查询,通过两次或多次查询,为一对一关系的实体 Bean 赋值

示例

下面以学生和学号为例讲解一对一关联查询的处理过程。

1)创建数据表

创建 student(学生)和 studentcard(学号)数据表,SQL 语句如下。

  1. CREATE TABLE `student` (
  2. `id` int(11) NOT NULL AUTO_INCREMENT,
  3. `name` varchar(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  4. `sex` tinyint(4) DEFAULT NULL,
  5. `cardId` int(20) DEFAULT NULL,
  6. PRIMARY KEY (`id`),
  7. KEY `cardId` (`cardId`),
  8. CONSTRAINT `student_ibfk_1` FOREIGN KEY (`cardId`) REFERENCES `studentcard` (`id`)
  9. ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
  10. insert into `student`(`id`,`name`,`sex`,`cardId`) values (1,'C语言中文网',0,1),(2,'编程帮',0,2),(3,'赵小红',1,3),(4,'李晓明',0,4),(5,'李紫薇',1,5),(6,'钱百百',0,NULL);
  11. DROP TABLE IF EXISTS `studentcard`;
  12. CREATE TABLE `studentcard` (
  13. `id` int(20) NOT NULL AUTO_INCREMENT,
  14. `studentId` int(20) DEFAULT NULL,
  15. `startDate` date DEFAULT NULL,
  16. `endDate` date DEFAULT NULL,
  17. PRIMARY KEY (`id`),
  18. KEY `studentId` (`studentId`)
  19. ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
  20. insert into `studentcard`(`id`,`studentId`,`startDate`,`endDate`) values (1,20200311,'2021-03-01','2021-03-11'),(2,20200314,'2021-03-01','2021-03-11'),(3,20200709,'2021-03-01','2021-03-11'),(4,20200508,'2021-03-01','2021-03-11'),(5,20207820,'2021-03-01','2021-03-11');

2)创建持久化类

在 myBatisDemo 应用的 net.biancheng.po 包下创建数据表对应的持久化类 Student 和 StudentCard。

Student 的代码如下:

  1. package net.biancheng.po;
  2. public class Student {
  3. private int id;
  4. private String name;
  5. private int sex;
  6. private StudentCard studentCard;
  7. /*省略setter和getter方法*/
  8. @Override
  9. public String toString() {
  10. return "Student [id=" + id + ", name=" + name + ", sex=" + sex + ", studentCard=" + studentCard + "]";
  11. }
  12. }

StudentCard 的代码如下:

  1. package net.biancheng.po;
  2. import java.util.Date;
  3. public class StudentCard {
  4. private int id;
  5. private int studentId;
  6. private Date startDate;
  7. private Date endDate;
  8. /*省略setter和getter方法*/
  9. @Override
  10. public String toString() {
  11. return "StudentCard [id=" + id + ", studentId=" + studentId + "]";
  12. }
  13. }

分步查询

新建 StudentCardMapper 类,代码如下。

  1. package net.biancheng.mapper;
  2. import net.biancheng.po.StudentCard;
  3. public interface StudentCardMapper {
  4. public StudentCard selectStuCardById(int id);
  5. }

StudentCardMapper.xml 对应映射 SQL 语句代码如下。

  1. <mapper namespace="net.biancheng.mapper.StudentCardMapper">
  2. <select id="selectStuCardById"
  3. resultType="net.biancheng.po.StudentCard">
  4. SELECT * FROM studentCard WHERE id = #{id}
  5. </select>
  6. </mapper>

StudentMapper 类方法代码如下。

  1. package net.biancheng.mapper;
  2. import net.biancheng.po.Student;
  3. public interface StudentMapper {
  4. public Student selectStuById1(int id);
  5. public Student selectStuById2(int id);
  6. }

StudentMapper.xml 代码如下。

  1. <mapper namespace="net.biancheng.mapper.StudentMapper">
  2. <!-- 一对一根据id查询学生信息:级联查询的第一种方法(嵌套查询,执行两个SQL语句) -->
  3. <resultMap type="net.biancheng.po.Student" id="cardAndStu1">
  4. <id property="id" column="id" />
  5. <result property="name" column="name" />
  6. <result property="sex" column="sex" />
  7. <!-- 一对一级联查询 -->
  8. <association property="studentCard" column="cardId"
  9. javaType="net.biancheng.po.StudentCard"
  10. select="net.biancheng.mapper.StudentCardMapper.selectStuCardById" />
  11. </resultMap>
  12. <select id="selectStuById1" parameterType="Integer"
  13. resultMap="cardAndStu1">
  14. select * from student where id=#{id}
  15. </select>
  16. </mapper>

测试代码如下。

  1. public class Test {
  2. public static void main(String[] args) throws IOException {
  3. InputStream config = Resources.getResourceAsStream("mybatis-config.xml");
  4. SqlSessionFactory ssf = new SqlSessionFactoryBuilder().build(config);
  5. SqlSession ss = ssf.openSession();
  6. Student stu = ss.getMapper(StudentMapper.class).selectStuById1(2);
  7. System.out.println(stu);
  8. }
  9. }

运行结果如下。

DEBUG [main] - ==>  Preparing: select * from student where id=?
DEBUG [main] - ==> Parameters: 2(Integer)
DEBUG [main] - ====>  Preparing: SELECT * FROM studentCard WHERE id = ?
DEBUG [main] - ====> Parameters: 2(Integer)
DEBUG [main] - <====      Total: 1
DEBUG [main] - <==      Total: 1
Student [id=2, name=编程帮, sex=0, studentCard=StudentCard [id=2, studentId=20200314]]

单步查询

在 StudentMapper.xml 中添加以下代码。

  1. <resultMap type="net.biancheng.po.Student" id="cardAndStu2">
  2. <id property="id" column="id" />
  3. <result property="name" column="name" />
  4. <result property="sex" column="sex" />
  5. <!-- 一对一级联查询 -->
  6. <association property="studentCard"
  7. javaType="net.biancheng.po.StudentCard">
  8. <id property="id" column="id" />
  9. <result property="studentId" column="studentId" />
  10. </association>
  11. </resultMap>
  12. <select id="selectStuById2" parameterType="Integer"
  13. resultMap="cardAndStu2">
  14. SELECT s.*,sc.studentId FROM student s,studentCard sc
  15. WHERE
  16. s.cardId = sc.id AND s.id=#{id}
  17. </select>

在 StudentMapper 中添加以下方法。

  • public Student selectStuById2(int id);

运行结果如下。

DEBUG [main] - ==>  Preparing: SELECT s.*,sc.studentId FROM student s,studentCard sc WHERE s.cardId = sc.id AND s.id=?
DEBUG [main] - ==> Parameters: 2(Integer)
DEBUG [main] - <==      Total: 1
Student [id=2, name=编程帮, sex=0, studentCard=StudentCard [id=2, studentId=20200314]]

腾讯云推出云产品限时特惠抢购活动:2C2G云服务器7.9元/月起
本文链接:https://www.jhelp.net/p/Hs3yLqObF7w0uCIg (转载请保留)。
关注下面的标签,发现更多相似文章