Mybatis中对象映射关联之collection使用

简介: Mybatis中对象映射关联之collection使用

参考博文:

MyBatis中映射器之结果映射详解

MyBatis中对象映射关联之association使用实践


写在前言


one to one - association ;

//单对一,使用association


one to many - collection ;

//单对多,使用collection


Nested results - column is not necessary ,javaType is necessary !

//使用嵌套结果,column 不是必需的,但是JavaType是必需的;


nested queries - column is necessary ,javaType is not necessary !

//使用嵌套查询,column是必需的,JavaType不是必须的,子查询自定义resultType即可!!


表结构:

t_student 表拥有属性 class_id 对应 t_class表 t_id


【1】更改Classes,添加属性

Classes模型中包括多个Student:

public class Classes {
  private int id;
  private String name;
  private Teacher teacher;
  private List<Student> list;
  ...
}


【2】嵌套结果-获取Classes,Teacher and list

下面实例讲关联都写在了getClass4Map结果映射中,其实association与collection的结果映射可以单独拎出来。

 <select id="getClass4" parameterType="int" resultMap="getClass4Map">
  select * from t_class c,t_student s ,t_teacher where c.c_id = s.class_id and c.t_id = t_teacher.t_id and c.c_id = #{id}
 </select>
 <resultMap type="Classes" id="getClass4Map">
  <result property="id" column="c_id" javaType="int" jdbcType="INTEGER"/>
  <result property="name" column="c_name" javaType="string" jdbcType="VARCHAR"/>
  <association property="teacher"  column="t_id"  javaType="Teacher" >
    <id property="id" column="t_id"  javaType="int" jdbcType="INTEGER"/>
    <result property="name" column="t_name"  javaType="string" jdbcType="VARCHAR"/>
  </association>
  <collection property="list" ofType="Student" >
    <result property="id" column="s_id" javaType="int" jdbcType="INTEGER"/>
    <result property="name" column="s_name" javaType="string" jdbcType="VARCHAR"/>
  </collection>
 </resultMap>


【3】嵌套查询–获取Classes,Teacher and list

执行查询getClass5时,将会级联查询getTeacher和getStudent。

   <select id="getClass5" parameterType="int" resultMap="getClass5Map">
    select * from t_class c where c.c_id = #{id}
   </select>
  <select id="getTeacher" parameterType="int" resultType="Teacher">
    select t_id id,t_name name from t_teacher where t_id = #{id}
  </select>  
   <select id="getStudent" parameterType="int" resultType="Student">
    select s_id id,s_name name from t_student t where t.class_id = #{id}
   </select>
   <resultMap type="Classes" id="getClass5Map">
    <result property="id" column="c_id" javaType="int" jdbcType="INTEGER"/>
    <result property="name" column="c_name" javaType="string" jdbcType="VARCHAR"/>
    <!--  here,column is necessary !!! 有属性select = getTeacher-->
    <association property="teacher" column="t_id" javaType="Teacher" select="getTeacher">
    </association>
    <!-- here,column is necessary !!! 有属性select = getStudent -->
    <collection  property="list"  ofType="Student"  select="getStudent"  column="c_id">
    </collection>
    <!-- pay attention to the Query condition of SQL statement  t.class_id = #{id}  not t.s_id = #{id} !!-->
   </resultMap>


【4】代码测试

获取SqlSessionFactory的工具类:

public static SqlSessionFactory getFactory(){
    /* flow the src dir*/
    String resource = "mybatis.xml";
    /*MybatisUtils.class.getResourceAsStream(resource)----- it's wrong !!!!
     * please distinguish the two up and down 
     * */
    InputStream inputStream = MybatisUtils.class.getClassLoader().getResourceAsStream(resource);
    SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(inputStream);
    return factory;
  }


测试方法

@Test
public void testSelect4(){
  /*set auto commit ,which equals to the above*/
  SqlSession session = MybatisUtils.getFactory().openSession(true);
  String statement = "com.web.mapper.classMapper.getClass4";
  /*return the effect rows*/
  Classes classes = session.selectOne(statement, 1);
  Teacher teacher = classes.getTeacher();
  List<Student> list = classes.getList();
  System.out.println("result.."+classes+','+classes.getClass());
  System.out.println(teacher);
  System.out.println(list);
}


result as follows :

result..Classes [id=1, list=[Student [id=1, name=stu1], Student [id=2, name=stu2], Student [id=3, name=stu3]], name=计算机, teacher=Teacher [id=1, name=李明]],class com.web.model.Classes
Teacher [id=1, name=李明]
[Student [id=1, name=stu1], Student [id=2, name=stu2], Student [id=3, name=stu3]]


目录
相关文章
|
2月前
|
Java 数据库连接 数据库
mybatis查询数据,返回的对象少了一个字段
mybatis查询数据,返回的对象少了一个字段
175 8
|
12天前
|
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标签的使用
|
4月前
|
SQL Java 数据库连接
idea中配置mybatis 映射文件模版及 mybatis plus 自定义sql
idea中配置mybatis 映射文件模版及 mybatis plus 自定义sql
89 3
|
5月前
|
SQL XML Java
后端数据库开发JDBC编程Mybatis之用基于XML文件的方式映射SQL语句实操
后端数据库开发JDBC编程Mybatis之用基于XML文件的方式映射SQL语句实操
71 3
若依修改,集成mybatisplus报错,若依集成mybatisplus,总是找不到映射是怎么回事只要是用mp的方法就找报,改成mybatisPlus配置一定要改
若依修改,集成mybatisplus报错,若依集成mybatisplus,总是找不到映射是怎么回事只要是用mp的方法就找报,改成mybatisPlus配置一定要改
|
5月前
|
Java 数据库连接 mybatis
使用Mybatis获取sqlSession对象老爆红的问题解决
使用Mybatis获取sqlSession对象老爆红的问题解决
|
6月前
|
算法 BI 数据库
MyBatisPlus查询条件设置、映射匹配兼容性、id生成策略、多数据操作
MyBatisPlus查询条件设置、映射匹配兼容性、id生成策略、多数据操作
373 3
|
1月前
|
Java 数据库连接 Maven
mybatis使用一:springboot整合mybatis、mybatis generator,使用逆向工程生成java代码。
这篇文章介绍了如何在Spring Boot项目中整合MyBatis和MyBatis Generator,使用逆向工程来自动生成Java代码,包括实体类、Mapper文件和Example文件,以提高开发效率。
105 2
mybatis使用一:springboot整合mybatis、mybatis generator,使用逆向工程生成java代码。
|
1月前
|
SQL JSON Java
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
这篇文章介绍了如何在Spring Boot项目中整合MyBatis和PageHelper进行分页操作,并且集成Swagger2来生成API文档,同时定义了统一的数据返回格式和请求模块。
52 1
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块