当前位置: 首页 > news >正文

Java_mybatis-结果集映射-ResultTypeResultMap

Mybatis返回值接收

可以使用两种方式进行参数的接收

  • resultType
  • resultMap

这两种分别都是需要在Mapper.xml文件中去设置的

当结果是一个简单的对象或者list或者map,对象中没有嵌套对象,或者集合时,就可以直接使用resultType

反之如果需要返回的值是一个复杂对象,其中包含list或者map的时候,就需要使用resultMap去确定返回值格式

1 使用 resultType

<sql id="basicSelect">id,name,age,address,emp_detail
</sql>
  • 查询单个Map对象

    <select id="selectUsers" resultType="map">select id, username, hashedPasswordfrom some_tablewhere id = #{id}
    </select>
    
    Map selectUsers(Long id);
    
  • 查询具体单个对象

    <select id="selectEmpById" resultType="cn.sycoder.domain.Employee">select<include refid="basicSelect"></include>from employee  where id = #{id}</select>
    <!--    定义sql-->
    <sql id="basicSelect">id,name,age,address,emp_detail
    </sql>
    
    Employee selectEmpById(Long id);
    
  • 查询集合对象

    <select id="selectEmp" resultType="cn.sycoder.domain.Employee">select<include refid="basicSelect"></include>from employeewhere id = #{id}
    </select>
    
    List<Employee> selectEmp(Long id);
    
  • 查询单个值

    <select id="selectCount" resultType="java.lang.Integer">select count(*) from employee
    </select>
    
    Integer selectCount();
    

2 使用 resultMap

2.1 简单使用

  • 应用场景:实体类属性和数据库列名不匹配的时候(比如,数据库采用经典命名法,java 使用驼峰命名法的时候)

    <resultMap id="basicMap" type="cn.sycoder.domain.Employee">
    <!--        设置数据库id 的对应字段--><id property="id" column="id"></id><result property="empDetail" column="emp_detail"></result><result property="name" column="name"></result></resultMap><select id="selectEmpById" resultMap="basicMap">select<include refid="basicSelect"></include>from employee  where id = #{id}</select>
    

    在这里插入图片描述

  • 解决方式2

       <settings><setting name="mapUnderscoreToCamelCase" value="true"/></settings>
    
  • id & result
    <id property="id" column="post_id"/>
    <result property="subject" column="post_subject"/>
    
  • id & result 属性

    属性描述
    property映射到列结果的字段或属性。如果 JavaBean 有这个名字的属性(property),会先使用该属性。否则 MyBatis 将会寻找给定名称的字段(field)。无论是哪一种情形,你都可以使用常见的点式分隔形式进行复杂属性导航。 比如,你可以这样映射一些简单的东西:“username”,或者映射到一些复杂的东西上:“address.street.number”。 stu.name
    column数据库中的列名,或者是列的别名。一般情况下,这和传递给 resultSet.getString(columnName) 方法的参数一样。
    javaType一个 Java 类的全限定名,或一个类型别名(关于内置的类型别名,可以参考上面的表格)。 如果你映射到一个 JavaBean,MyBatis 通常可以推断类型。然而,如果你映射到的是 HashMap,那么你应该明确地指定 javaType 来保证行为与期望的相一致。

2.2多结果集处理前期准备

  • 新建学生和班级表

    在这里插入图片描述

    在这里插入图片描述

    create table class
    (id bigint auto_incrementprimary key,name varchar(64) null
    );create table student
    (id bigint auto_incrementprimary key,name varchar(64) null,age int null,class_id bigint null,constraint student_class_id_fkforeign key (class_id) references class (id)
    );insert into class values (null,'软工1班'),(null,'计科2班');insert into student (id, name, age,class_id)
    values (null,'sy',18,1),(null,'zs',19,1),(null,'zz',20,1),(null,'小明',22,2);

2.3一对多处理

  • collection :使用 collection 就可以获取到多个结果集对象

  • 一个班级对应多个学生

  • 操作

    • 第一步,新建 mapper 方法

      public interface ClassMapper {MyClass getById(Long id);
      }
      
    • 第二步,编写 xml

      <resultMap id="basicMap" type="cn.sycoder.domain.MyClass"><id property="id" column="id"></id><result property="name" column="name"></result>
      <!--        获取学生信息信息--><collection property="stus" ofType="cn.sycoder.domain.Student"><id property="id" column="sId"></id><result property="name" column="sName"></result><result property="age" column="age"></result><result property="classId" column="class_id"></result></collection></resultMap><select id="getById" resultMap="basicMap">selectc.*,s.id sId,s.name sName,s.age,s.class_idfromclass c left join student s on c.id = s.class_idwhere c.id = #{id}</select>
      

2.4多对一的处理

  • 关联(association):如果我的类里面有其它对象的关联关系,可以使用 association 来进行操作

    属性描述
    property映射到列结果的字段或属性。如果用来匹配的 JavaBean存在给定名字的属性,那么它将会被使用。否则 MyBatis 将会寻找给定名称的字段。无论是哪一种情形,你都可以使用通常的点式分隔形式进行复杂属性导航。比如,你可以这样映射一些简单的东西:“username”,或者映射到一些复杂的东西上:“address.street.number”。
    javaType一个 Java 类的完全限定名,或一个类型别名(关于内置的类型别名,可以参考上面的表格)。 如果你映射到一个 JavaBean,MyBatis 通常可以推断类型。然而,如果你映射到的是HashMap,那么你应该明确地指定 javaType 来保证行为与期望的相一致。
  • 传统操作

    • 使用级联操作

       <resultMap id="basicMap" type="cn.sycoder.domain.Student"><id property="id" column="id"></id><result property="name" column="name"></result><result property="age" column="age"></result><result property="classId" column="class_id"></result><result property="cls.id" column="cId"></result><result property="cls.name" column="cName"></result></resultMap><select id="listAllStus" resultMap="basicMap">selectstu.*,c.id cId,c.name cNamefromstudent stu left join class c on stu.class_id = c.id</select>
      
  • 使用 association 操作

    • 代码

      <resultMap id="AssociationMap" type="cn.sycoder.domain.Student"><id property="id" column="id"></id><result property="name" column="name"></result><result property="age" column="age"></result><result property="classId" column="class_id"></result><association property="cls" javaType="cn.sycoder.domain.MyClass"><id property="id" column="cId"></id><result property="name" column="cName"></result></association></resultMap><select id="listAllStusByAssociation" resultMap="AssociationMap">selectstu.*,c.id cId,c.name cNamefromstudent stu left join class c on stu.class_id = c.id</select>
      

3 嵌套 select 查询

  • 以多条sql 的方式执行

3.1关联关系 assciation select

  • 查询学生信息,包含班级信息

    <resultMap id="AssociationSelectMap" type="cn.sycoder.domain.Student"><id property="id" column="id"></id><result property="name" column="name"></result><result property="age" column="age"></result><result property="classId" column="class_id"></result><association property="cls" column="class_id"select="cn.sycoder.mapper.StudentMapper.getClassById"/></resultMap><select id="listAllStusByAssociationSelect" resultMap="AssociationSelectMap">select * from student</select><select id="getClassById" resultType="cn.sycoder.domain.MyClass">select * from class where id = #{id}</select>
    
  • 如果关联的是多个结果集使用 resultSet

    属性描述
    column当使用多个结果集时,该属性指定结果集中用于与 foreignColumn 匹配的列(多个列名以逗号隔开),以识别关系中的父类型与子类型。
    foreignColumn指定外键对应的列名,指定的列将与父类型中 column 的给出的列进行匹配。
    resultSet指定用于加载复杂类型的结果集名字。
    <resultMap id="blogResult" type="Blog"><id property="id" column="id" /><result property="title" column="title"/><association property="author" javaType="Author" resultSet="authors" column="author_id" foreignColumn="id"><id property="id" column="id"/><result property="username" column="username"/><result property="password" column="password"/><result property="email" column="email"/><result property="bio" column="bio"/></association>
    </resultMap>
    

3.2 collection select

  • 需求:通过班级去查学生,使用嵌套 select 查询

    <resultMap id="collectionSelect" type="cn.sycoder.domain.MyClass"><id property="id" column="id"></id><result property="name" column="name"></result><!--        获取学生信息信息--><collection property="stus" ofType="cn.sycoder.domain.Student"select="getStudentByClassId"    column="id"/></resultMap><select id="getByClassId" resultMap="collectionSelect">select * from class where id = #{id}</select><select id="getStudentByClassId" resultType="cn.sycoder.domain.Student">select * from student where class_id = #{id}</select>
    

3.3 关联查询的总结

  • 优点:
    • 可以实现延迟加载,前提是要配置
    • sql 写起来变得简单了
  • 缺点:
    • 发起了多条 sql,正常查询只发起一条sql
http://www.lryc.cn/news/258975.html

相关文章:

  • 【Java】MySQL存储 MD5 值应该用 VARCHAR 还是CHAR?
  • pytorch中五种常用随机矩阵构造方法:rand、randn、randn_like、randint、randperm
  • 2023第二届全国大学生数据分析大赛A完整原创论文(含摘要+问题分析+模型建立与求解+python代码)
  • Qt 面试指南
  • 开利网络的数字化技术加持下,加快扶贫和乡村振兴的效果和进程!
  • PR剪辑视频做自媒体添加字幕快速方式(简单好用的pr视频字幕模板)
  • 金融行业文件摆渡,如何兼顾安全和效率?
  • [足式机器人]Part2 Dr. CAN学习笔记-自动控制原理Ch1-1开环系统与闭环系统Open/Closed Loop System
  • 每日一题,杨辉三角
  • Java_Mybatis_缓存
  • C#基础面试题集
  • 可视化监管云平台EasyCVR宠物粮食食品厂智能视频监控方案
  • ArkUI组件
  • C语言--动态内存【详细解释】
  • 施工现场安全管理系统
  • 电线电缆行业生产管理MES系统解决方案
  • 滑动窗口最大值和前K个高频元素
  • C语言实现在顺序表中找到最大值
  • 数字工厂管理系统建设层级分为哪几层
  • MySQL 8 update语句更新数据表里边的数据
  • 可视化监控云平台/智能监控平台EasyCVR国标设备开启音频没有声音是什么原因?
  • L1-039:古风排版
  • 树莓派新手装机指南
  • flink使用事件时间时警惕kafka不同分区的事件时间倾斜问题
  • 『App自动化测试之Appium基础篇』| Desired Capabilities详解与使用
  • vscode插件webview和插件通信
  • 【STM32单片机】贪吃蛇游戏设计
  • 【Java 基础】32 定时调度
  • C++ 教程 - 02 复合数据类型
  • 【数据处理】NumPy数组的合并操作,如何将numpy数组进行合并?