MyBatis之高级关联和集合映射(二、嵌套结果综合案例)

接上一篇,这一次,只讲嵌套结果,同样是上一次的三张表

上次忘了介绍 resultMap,补上:

resultMap概念视图

  • constructor – 类在实例化时,用来注入结果到构造方法中
  • idArg – ID参数;标记结果作为ID可以帮助提高整体效能
  • arg – 注入到构造方法的一个普通结果
  • id – 一个ID结果;标记结果作为ID可以帮助提高整体效能
  • result – 注入到字段或JavaBean属性的普通结果
  • association – 一个复杂的类型关联;许多结果将包成这种类型
  • collection – 复杂类型的集
  • discriminator – 使用结果值来决定使用哪个结果映射
  • case – 基于某些值的结果映射

这次的查询要求是:

--通过教师 id 找班级和教师的信息:
select * from teacher t join classes c on t.teacherId =5001 and t.teacherId =c.teacherId join student s on s.classId=c.clsId

1. 我们来看三个 Mapper.xml的配置

<!-- StudentMapper.xml -->
<mapper namespace="com.yc.mybatis.mapper.StudentMapper">
    <resultMap type="Student" id="StudentMap">
        <id column="stuId" property="stuId"/>
        <result column="stuName" property="stuName"/>
        <result column="stuSex" property="stuSex"/>
        <result column="stuBirthday" property="stuBirthday" />
        <result column="classId" property="classId"/>
    </resultMap>
</mapper>
<!-- ClassesMapper.xml -->
<mapper namespace="com.yc.mybatis.mapper.ClassesMapper">
    <resultMap type="Classes" id="ClassesMap">
        <id column="clsId" property="clsId"/>
        <result column="clsName" property="clsName"/>
        <collection property="stus" ofType="Student" resultMap="com.yc.mybatis.mapper.StudentMapper.StudentMap"></collection>
    </resultMap>

</mapper>
<!---  TeacherMapper.xml -->
<mapper namespace="com.yc.mybatis.mapper.TeacherMapper">
    <resultMap type="Teacher" id="TeacherMap">
        <id column="teacherId" property="teacherId"/>
        <result column="teacherName" property="teacherName"/>
        <result column="workYear" property="workYear"/>
        <result column="professional" property="professional"/>

        <!-- 调用 classesmapperxml 中的resultmap 需要有 namespace + id  -->
        <association property="classes" resultMap="com.yc.mybatis.mapper.ClassesMapper.ClassesMap"></association>
    </resultMap>

    <select id="getTeacherById" parameterType="int" resultMap="TeacherMap">
        select * from teacher t join classes c on t.teacherId =#{teacherId} and t.teacherId =c.teacherId
         join student s on s.classId=c.clsId 

    </select>

</mapper>

2. mybatis.xml

<configuration>

    <!-- 配置文件和数据库连接的属性文件关联 然后可以通过 ognl 表达式 调用属性文件的内容  -->
    <properties resource="jdbc.properties"></properties>

    <!-- 定义类型的别名 -->
    <typeAliases>
        <!--  只能为一种类型指定别名 -->
        <!--<typeAlias type="com.yc.mybitis.entity.User" alias="User"/>-->

        <!-- 给指定包的所有类定义别名, 别名就是与不带包的类名相同 -->
        <package name="com/yc/mybitis/entity"/>

    </typeAliases>

    <!-- 环境可配置多个,default属性指明当前默认采用的环境  需要注意的是default 指定的环境必须在下文有配置-->
    <environments default="development">
        <environment id="development">

        <!-- transactionManager:事务管理, type:jdbc 自己管理,或者 type:Manager 交给第三方管理 如 spring -->
        <transactionManager type="JDBC"/>

        <!-- 数据源,POOLED 使用数据库连接池   ;    UNPOOLED 不使用  ;   JNDI  使用其他容器的连接池 -->
        <dataSource type="POOLED">

 <!-- properties已经在上面配置好了资源文件,与数据库连接 关联,通过表达式直接调用 -->
 <property name="driver" value="${jdbc.driver}"/>
 <property name="url" value="${jdbc.url}"/>
 <property name="username" value="${jdbc.user}"/>
 <property name="password" value="${jdbc.password}"/>
 </dataSource>
 </environment>

 </environments>
<mappers>
 <mapper resource="com/yc/mybitis/entity/ClassesMapper.xml"/>
 <mapper resource="com/yc/mybitis/entity/StudentMapper.xml"/>
 <mapper resource="com/yc/mybitis/entity/TeacherMapper.xml"/>
 </mappers>
</configuration>

3. 接口

4. 测试类

package test;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import com.yc.mybatis.mapper.TeacherMapper;
import com.yc.mybitis.entity.Teacher;
import com.yc.mybitis.util.MybatisUtil;

public class TeacherMapperTest {
    private TeacherMapper tMapper;

    @Before
    public void setUp() throws Exception {
        tMapper=MybatisUtil.getSession().getMapper(TeacherMapper.class);
    }

    @After
    public void tearDown() throws Exception {
        tMapper=null;
    }

    @Test
    public void testGetTeacherById() {
        Teacher t=tMapper.getTeacherById(5001);
        System.out.println( t );
    }

}

5. 测试结果

好了,嵌套结果告一段落。

mybatis 讲解怎么配置和使用,并没有了解底层实现,有兴趣的大家可以找找资料。

版权声明:本文为博主原创文章,谢谢参考!有问题的地方,欢迎纠正,一起进步。

时间: 2024-10-09 12:48:22

MyBatis之高级关联和集合映射(二、嵌套结果综合案例)的相关文章

MyBatis之高级关联和集合映射(一、基础知识)

<association property="author" column="blog_author_id" javaType=" Author"> <id property="id" column="author_id"/> <result property="username" column="author_username"/>

MyBatis之高级关联和集合映射(二、嵌套查询和嵌套结果小案例)

三张表,通过班级 clsId=3001 查找班级和学生的信息 1. 建表 表结构如下 create table student ( stuId number(4) primary key, stuName varchar2(20) not null, stuSex varchar2(4), stuBirthday date, classId number(4) ); create table classes ( clsId number(4) primary key, clsName varch

MyBatis一对多关联表查询 映射文件

<!--一对多--> <!--根据广告组编号获取广告项列表一--> <select id="getAdInfoByAdSysNo" resultType="ec.model.advertising.AdInfo" parameterType="int"> SELECT * FROM T_AD_ADINFO WHERE adSysNo = #{sysNo,jdbcType=INTEGER} </select

Mybatis学习记录(六)----Mybatis的高级映射

作者:余家小子 1.一对多查询 1.1 需求 查询订单及订单明细的信息. 1.2 sql语句 确定主查询表:订单表 确定关联查询表:订单明细表 在一对一查询基础上添加订单明细表关联即可. SELECT orders.*, USER.username, USER.sex, USER.address, orderdetail.id orderdetail_id, orderdetail.items_id, orderdetail.items_num, orderdetail.orders_id FR

MyBatis学习--高级映射

简介 前面说过了简单的数据库查询和管理查询,在开发需求中有一些一对一.一对多和多对多的需求开发,如在开发购物车的时候,订单和用户是一对一,用户和订单是一对多,用户和商品是多对多.这些在Hibernate开发中也是常见的,Hibernate中是通过数据映射来实现的,在MyBatis中也是通过配置文件的数据映射来实现. 一对一查询 如果我们要查询订单信息,关联查询创建订单的用户信息,那么这就是典型的一对一查询.实现一对一查询有两种实现方式:使用resultType和resultMap.resultT

三、MyBatis系列:Mapper 映射 之 多级关联查询结果映射

现在有这么几张表,员工表(user).订单(orders).订单明细(orderdetails).产品信息(items)它们的物理模型图如下: 希望能查询出某些用户下的订单详细信息,而且希望能一条SQL查出所有相关的数据,并映射到POJO实体中.返回的结果应该包含用户信息.订单及明细.相应产品信息.数据映射为实体结构如下: 1 package cn.xleos.mybatis.po; 2 3 public class User { 4 private int id; 5 private Stri

深入浅出Mybatis系列(八)---mapper映射文件配置之select、resultMap[转]

上篇<深入浅出Mybatis系列(七)---mapper映射文件配置之insert.update.delete>介绍了insert.update.delete的用法,本篇将介绍select.resultMap的用法.select无疑是我们最常用,也是最复杂的,mybatis通过resultMap能帮助我们很好地进行高级映射.下面就开始看看select 以及 resultMap的用法: 先看select的配置吧: <select <!-- 1. id (必须配置) id是命名空间中的

深入浅出Mybatis系列(八)---mapper映射文件配置之select、resultMap good

上篇<深入浅出Mybatis系列(七)---mapper映射文件配置之insert.update.delete>介绍了insert.update.delete的用法,本篇将介绍select.resultMap的用法.select无疑是我们最常用,也是最复杂的,mybatis通过resultMap能帮助我们很好地进行高级映射.下面就开始看看select 以及 resultMap的用法: 先看select的配置吧: <select <!-- 1. id (必须配置) id是命名空间中的

深入浅出Mybatis系列(八)---mapper映射文件配置之select、resultMap

上篇<深入浅出Mybatis系列(七)---mapper映射文件配置之insert.update.delete>介绍了insert.update.delete的用法,本篇将介绍select.resultMap的用法.select无疑是我们最常用,也是最复杂的,mybatis通过resultMap能帮助我们很好地进行高级映射.下面就开始看看select 以及 resultMap的用法: 先看select的配置吧: <select <!-- 1. id (必须配置) id是命名空间中的