Mybatis 结果集映射
结果映射(resultMap)
- constructor - 用于在实例化类时,注入结果到构造方法中(一般不用)
- idArg - ID 参数;标记出作为 ID 的结果可以帮助提高整体性能
- arg - 将被注入到构造方法的一个普通结果
- id – 一个 ID 结果;标记出作为 ID 的结果可以帮助提高整体性能
- result – 注入到字段或 JavaBean 属性的普通结果
- association – 一个复杂类型的关联;许多结果将包装成这种类型
- 嵌套结果映射 – 关联本身可以是一个 resultMap 元素,或者从别处引用一个
- collection – 一个复杂类型的集合
- 嵌套结果映射 – 集合本身可以是一个 resultMap 元素,或者从别处引用一个
- discriminator – 使用结果值来决定使用哪个 resultMap(一般不用)
- case – 基于某些值的结果映射
- 嵌套结果映射 – case 本身可以是一个 resultMap 元素,因此可以具有相同的结构和元素,或者从别处引用一个
- case – 基于某些值的结果映射
id和result的属性 - 映射普通类型
- property - 映射到列结果的字段或属性。如果用来匹配的 JavaBean 存在给定名字的属性,那么它将会被使用
- column - 数据库中的列名,或者是列的别名
- javaType - 一个 Java 类的完全限定名,或一个类型别名(关于内置的类型别名,可以参考上面的表格)。 如果你映射到一个 JavaBean,MyBatis 通常可以推断类型
association的属性 - 映射对象
- property - 用来匹配的 JavaBean 类型
- javaType - 用来匹配的查询结果对应的java类型
- column - 如果需要嵌套查询,用来传参,一般和select一起用
- select - 嵌套查询时传select的id
collection的属性 - 映射集合
- property - 用来匹配的JavaBean类型
- javaType - 用来匹配查询结果对应的java类型
- ofType - 映射集合的泛型
- select - 嵌套查询时的select ID
- column - 如果需要嵌套查询,用来传参,一般和select一起用
一对多查询示例:
<!--按照查询嵌套处理-->
<select id="getList" resultMap="studentTeacher">
select * from student
</select> <resultMap id="studentTeacher" type="student">
<id property="id" column="id"></id>
<result column="name" property="name"></result>
<association property="teacher" column="tid" javaType="teacher" select="getTeacher"></association>
</resultMap> <select id="getTeacher" resultType="teacher">
select * from teacher where id = #{tid}
</select> <!--按照结果嵌套处理-->
<select id="getList" resultMap="studentTeacher" >
select s.id as sid ,s.name as sname,t.id as tid,t.name as tname from student as s inner join teacher as t
on s.id = t.id
</select> <resultMap id="studentTeacher" type="student">
<id property="id" column="sid"></id>
<result column="sname" property="name"></result>
<association property="teacher" javaType="teacher" >
<result property="id" column="tid"></result>
<result column="tname" property="name"></result>
</association>
</resultMap>
多对多查询示例:
<!--按照结果嵌套处理-->
<select id="getList" resultMap="teacherStudent">
select t.id tid,t.name tname,s.id sid,s.name sname from teacher t,student s where t.id = s.tid
</select>
<resultMap id="teacherStudent" type="teacher">
<id property="id" column="tid"></id>
<result column="tname" property="name"></result> <collection property="students" ofType="student">
<id property="id" column="sid"></id>
<result column="sname" property="name"></result>
</collection>
</resultMap> <!--按照查询嵌套结果-->
<select id="getList" resultMap="teacherStudent">
select * from mybatis.teacher
</select>
<resultMap id="teacherStudent" type="teacher">
<collection property="students" javaType="ArrayList" ofType="student" select="getStudents" column="id" >
</collection>
</resultMap>
<select id="getStudents" resultType="student">
select * from mybatis.student where tid = #{tid}
</select>
Mybatis 结果集映射的更多相关文章
- Mybatis结果集映射问题
之前的数据库图简单都是纯小写格式,这一次做项目为了显得正规一些,模拟实际的情况,采用了驼峰命名的规则,这时候就遇到了结果匹配的问题. 之前只要 <select id="select&q ...
- Mybatis学习笔记8 - resultMap自定义结果集映射规则
一.resultMap自定义结果集映射规则 示例如下: 接口定义: package com.mybatis.dao; import com.mybatis.bean.Employee; public ...
- mybatis中处理结果集映射
单行结果集映射: 接口中方法返回值定义为Map类型,sql语句的resultType属性设置为map即可.这种情况默认把列名作为key,列中的值作为value. 也就是说用map<Strirng ...
- Mybatis——ResultMap(结果集映射)的使用
ResultMap的使用 在Mybatis中,可以使用resultMap(结果集映射)作为sql的返回类型 一般用来解决如下问题: 数据库表字段名和实体类属性名不一致的问题: 多对一问题: 例如:多个 ...
- Mybatis学习笔记-ResultMap结果集映射
解决属性名与字段名不一致的问题 新建项目 --> 测试实体类字段不一致的情况 数据库字段:id,name,pwd 实体类属性:id,name,password 输出结果 User{id=1, n ...
- mybatis百科-结果集映射类ResultMap
目录 1 成员变量 2 构造函数 3 其他函数 3.1 setter 和 getter 函数 4 静态内部类 4.1 成员变量 4.2 构造函数 4.3 建造者相关的函数 4.4 获取配置的构造方法参 ...
- Mybatis 强大的结果集映射器resultMap
1. 前言 resultMap 元素是 MyBatis 中最重要最强大的元素.它可以让你从 90% 的 JDBC ResultSets 数据提取代码中解放出来,并在一些情形下允许你进行一些 JDBC ...
- mybatis源码追踪2——将结果集映射为map
org.apache.ibatis.binding.MapperMethod中execute方法 ...} else if (method.returnsMap()) { result = execu ...
- mybatis(五):源码分析 - 结果集映射流程
随机推荐
- 0007 settings.py配置文件详解
01 DEBUG调试配置 开发期设置为True,发布时设置为False 02 INSTALLED_APPS已安装的APP配置 INSTALLED_APPS = [ 'django.contrib.ad ...
- C语言-宏定义与使用分析
1.C语言中的宏定义 #define是预处理器处理的单元实体之— #define定义的宏可以出现在程序的任意位置 #define定义之后的代码都可以使用这个宏 2.定义宏常量 #define定义的宏常 ...
- (转)Boyer-Moore算法
转自:Boyer-Moore算法 一.简述 在当前用于查找子字符串的算法中,BM(Boyer-Moore)算法是当前有效且应用比较广的一中算法,各种文本编辑器的“查找”功能(Ctrl+F),大多采用B ...
- 基于Linq表达式做的一个简单的表达式生成器
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; ...
- 配置Mongodb
MS Windows: 常用命令: 查看帮助 mongod help/mongod -h 查看版本 mongod --version 启动/停止/重启服务 net start/stop/restart ...
- Hadoop TextInputFormat
1. TextInputFortmat TextInputFormat是默认的InputFormat.每条记录是一行输入.Key是LongWritable类型,存储该行在整个文件中的字节偏移量(不是行 ...
- 在一个formitem中多input的验证方法-antd的验证
实现效果如下: 当点击按钮的时候 对一个FormItem里的多个input/或者是input和select进行校验 同时通过Rol/Col实现布局 Rselect/input组件封装的组件如下fie ...
- Is It Good To Use LED Wall Light In Household Space?
Wall lamps are mostly used for local lighting, can play a very decorative effect, improve the visual ...
- C#中的@和$ 占位符
c#中@的三种用法: 1.忽略转移字符 string str = "C:\\windows\\system32"; string str = @"C:\windows\s ...
- jenkins发布.war包到本地tomcat
前提:保证jenkins构建打包成功 1.配置tomcat的用户名密码(此处tomcat为本地任意tomcat包,jenkins会通过Deploy war/ear to container配置的url ...