MyBatis的一对多映射(九)下

简介: MyBatis的一对多映射(九)

三. 部门到员工的一对多关联映射


一对多关联映射,也有两种方式, 一种是一对多的嵌套结果, 一种是一对多的嵌套Select查询, 相比较一对一来说, 一对一查询出来的结果最多只有一个值,而一对多却可以查询出一个集合。 另外,一对一 用的是 javaType, 而一对多用的是 ofType. 这一点非常重要。


三.一 一对多的嵌套结果方式


DeptMapper.java 中接口:


public Dept getAllInfoByIdWithResult(int id);


DeptMapper.xml 中的sql语句:


<resultMap type="dept" id="deptCollectionResultMapWithResult">
    <id property="id" column="id"/>
    <result property="name" column="name"/>
    <result property="description" column="description"/>
    <!-- 用的是ofType的类型。 -->
    <collection property="allUser" ofType="user">
      <id property="id" column="id"/>
      <result property="name" column="name"/>
      <result property="sex" column="sex"/>
      <result property="age" column="age"/>
      <result property="description" column="description"/>
    </collection>
  </resultMap>
<select id="getAllInfoByIdWithResult" parameterType="int" resultMap="deptCollectionResultMapWithResult">
    select * from dept d,user u where d.id=u.deptId and d.id=#{id}
  </select>


测试方法:


@Test
  public void getAllInfoByIdWithResultTest(){
    SqlSession sqlSession=SqlSessionFactoryUtils.getSession();
    DeptMapper deptMapper=sqlSession.getMapper(DeptMapper.class);
    Dept dept=deptMapper.getAllInfoByIdWithResult(1);
    System.out.println(dept);
    List<User> allUser=dept.getAllUser();
    allUser.forEach(n ->System.out.println(n));
  }


20190708165337732.png


三.二 一对多的嵌套Select 查询


DeptMapper.java 中的接口:


public Dept getAllInfoByIdWithSelect(int id);


UserMapper.java 中的接口:

传入参数,用 @Param 注解的形式。


public List<User> findUserByDeptId(@Param(value="deptId") int deptId);


DeptMapper.xml 中的sql语句:


<resultMap type="dept" id="deptCollectionResultMapWithSelect">
    <id property="id" column="id"/>
    <result property="name" column="name"/>
    <result property="description" column="description"/>
    <!-- 用的是ofType的类型。 -->
    <collection property="allUser" ofType="user" column="id"
    select="com.yjl.mapper.UserMapper.findUserByDeptId"></collection>
</resultMap>
<select id="getAllInfoByIdWithSelect" parameterType="int" resultMap="deptCollectionResultMapWithSelect">
    select * from dept where id=#{id}
</select>


UserMapper.xml 中的sql语句:


<resultMap type="user" id="userResultMap">
    <id property="id" column="id"/>
    <result property="name" column="name"/>
    <result property="sex" column="sex"/>
    <result property="age" column="age"/>
    <result property="description" column="description"/>
</resultMap>
<select id="findUserByDeptId" parameterType="int" resultMap="userResultMap">
    select * from user u where u.deptId=#{deptId}
</select>


测试方法:


@Test
  public void getAllInfoByIdWithSelectTest(){
    SqlSession sqlSession=SqlSessionFactoryUtils.getSession();
    DeptMapper deptMapper=sqlSession.getMapper(DeptMapper.class);
    Dept dept=deptMapper.getAllInfoByIdWithSelect(1);
    System.out.println(dept);
    List<User> allUser=dept.getAllUser();
    allUser.forEach(n ->System.out.println(n));
  }


20190708165348821.png


谢谢!!!

相关文章
|
7天前
|
SQL 缓存 Java
【详细实用のMyBatis教程】获取参数值和结果的各种情况、自定义映射、动态SQL、多级缓存、逆向工程、分页插件
本文详细介绍了MyBatis的各种常见用法MyBatis多级缓存、逆向工程、分页插件 包括获取参数值和结果的各种情况、自定义映射resultMap、动态SQL
【详细实用のMyBatis教程】获取参数值和结果的各种情况、自定义映射、动态SQL、多级缓存、逆向工程、分页插件
|
2月前
|
SQL XML Java
mybatis复习04高级查询 一对多,多对一的映射处理,collection和association标签的使用
文章介绍了MyBatis中高级查询的一对多和多对一映射处理,包括创建数据库表、抽象对应的实体类、使用resultMap中的association和collection标签进行映射处理,以及如何实现级联查询和分步查询。此外,还补充了延迟加载的设置和用法。
mybatis复习04高级查询 一对多,多对一的映射处理,collection和association标签的使用
|
1月前
|
SQL XML Java
Mybatis中一对一和一对多的处理
这篇文章讲解了在Mybatis中如何处理一对一和一对多的关系映射,包括使用association和collection标签的具体方法。
19 1
|
6月前
|
SQL 缓存 Java
mybatis 一对多查询
mybatis 一对多查询
107 0
|
3月前
|
Java 数据库连接 mybatis
后端框架的学习----mybatis框架(9、多对一处理和一对多处理)
这篇文章介绍了在MyBatis框架中如何处理多对一和一对多的关联查询,通过定义`<resultMap>`和使用`<association>`与`<collection>`元素来实现对象间的关联映射。
|
4月前
|
SQL Java 数据库连接
idea中配置mybatis 映射文件模版及 mybatis plus 自定义sql
idea中配置mybatis 映射文件模版及 mybatis plus 自定义sql
87 3
|
5月前
|
SQL XML Java
后端数据库开发JDBC编程Mybatis之用基于XML文件的方式映射SQL语句实操
后端数据库开发JDBC编程Mybatis之用基于XML文件的方式映射SQL语句实操
70 3
若依修改,集成mybatisplus报错,若依集成mybatisplus,总是找不到映射是怎么回事只要是用mp的方法就找报,改成mybatisPlus配置一定要改
若依修改,集成mybatisplus报错,若依集成mybatisplus,总是找不到映射是怎么回事只要是用mp的方法就找报,改成mybatisPlus配置一定要改
|
5月前
|
Java 数据库连接 mybatis
Mybatis基于注解的一对一和一对多查询
Mybatis基于注解的一对一和一对多查询
|
5月前
|
SQL Java 数据库连接
Mybatis中一对多mapper配置
Mybatis中一对多mapper配置