六、封装 MyBatis 输出结果resultType、resultMap 以及 数据库表中列名和返回对象属性名不一致的2种解决方案(详解)

1.1 resultType

resultType: 执行 sql 得到 ResultSet 转换的类型,使用类型的完全限定名或别名。
注意:如果返回的是集合,那应该设置为集合包含的类型,而不是集合本身。resultType 和 resultMap,不能同时使用。
在这里插入图片描述

A、简单类型

接口方法:

int countStudent();

mapper 文件:

 <!--resultType简单类型--><select id="countStudent" resultType="int">select count(*) from student</select>

或者:

 <!--resultType简单类型--><select id="countStudent" resultType="java.lang.Integer">select count(*) from student</select>

注意:resultType结果类型的它的值

  1. 类型的全限定名称
  2. 类型的别名, 例如 java.lang.Integer别名是int

测试文件:

@Testpublic void testReturnInt(){SqlSession sqlSession = MybatisUtils.getSqlSession();StudentDao dao = sqlSession.getMapper(StudentDao.class); // 这句代码可以自动创建dao接口的实现类对象int count = dao.countStudent();System.out.println("学生总人数:"+ count);}

在这里插入图片描述

B、 对象类型

接口方法:

public Student selectStudentById(@Param("studentId") Integer id);

mapper 文件:

<select id="selectStudentById" resultType="com.zep.domain.Student">select id,name,email,age from student where id=#{studentId}
</select>

测试文件:

@Testpublic void testSelectStudentById() {/*** 使用mybatis的动态代理机制,使用SqlSession.getMapper(dao接口)* getMapper能够获取dao接口对应的实现类对象。*/SqlSession sqlSession = MybatisUtils.getSqlSession();StudentDao dao = sqlSession.getMapper(StudentDao.class); // 这句代码可以自动创建dao接口的实现类对象//调用dao的方法,执行数据库的操作Student student = dao.selectStudentById(1001);System.out.println("学生=" + student);}

在这里插入图片描述
在这里插入图片描述
注意:Dao 接口方法返回是集合类型,需要指定集合中的类型,不是集合本身。
在这里插入图片描述
mybatis中也可以对我们自定义的类型起别名:
方法:
1)在mybatis主配置文件中定义,使<typeAlias>定义别名
在这里插入图片描述

<!--定义别名--><typeAliases><!--可以指定一个类型一个自定义别名type:自定义类型的全限定名称alis:别名(短小,容易记忆)--><typeAlias type="com.zep.domain.Student" alias="stu"/><typeAlias type="com.zep.vo.ViewStudent" alias="vstu"/></typeAliases>

2)可以在resultType中使用自定义别名
接口方法:

public Student selectStudentById(@Param("studentId") Integer id);

mapper 文件:

<select id="selectStudentById" resultType="stu">select id,name,email,age from student where id=#{studentId}
</select>

测试文件:

@Testpublic void testSelectStudentById() {/*** 使用mybatis的动态代理机制,使用SqlSession.getMapper(dao接口)* getMapper能够获取dao接口对应的实现类对象。*/SqlSession sqlSession = MybatisUtils.getSqlSession();StudentDao dao = sqlSession.getMapper(StudentDao.class); // 这句代码可以自动创建dao接口的实现类对象//调用dao的方法,执行数据库的操作Student student = dao.selectStudentById(1001);System.out.println("学生=" + student);}

在这里插入图片描述
或者采用包扫描<package>:
1)在mybatis主配置文件中定义,使<package>定义别名
在这里插入图片描述

<typeAliases><!--第一种方式:可以指定一个类型一个自定义别名type:自定义类型的全限定名称alis:别名(短小,容易记忆)--><!--<typeAlias type="com.zep.domain.Student" alias="stu"/><typeAlias type="com.zep.vo.ViewStudent" alias="vstu"/>--><!--第二种方式<package> name是包名,这个包中的所有类,类名就是别名(类名不区分大小写)--><package name="com.zep.domain"/><package name="com.zep.vo"/></typeAliases>

2)可以在resultType的值中可以省略前面在<package>标签name属性中已经写过的内容,只需要写类名即可,类名就是别名

mapper文件:

<select id="selectStudentById" resultType="Student">select id,name,email,age from student where id=#{studentId}
</select>

测试文件:

@Testpublic void testSelectStudentById() {/*** 使用mybatis的动态代理机制,使用SqlSession.getMapper(dao接口)* getMapper能够获取dao接口对应的实现类对象。*/SqlSession sqlSession = MybatisUtils.getSqlSession();StudentDao dao = sqlSession.getMapper(StudentDao.class); // 这句代码可以自动创建dao接口的实现类对象//调用dao的方法,执行数据库的操作Student student = dao.selectStudentById(1001);System.out.println("学生=" + student);}

在这里插入图片描述

C、 Map

sql 的查询结果作为 Map 的 key 和 value。推荐使用 Map<Object,Object>。

注意:Map 作为接口返回值,sql 语句的查询结果最多只能有一条记录。大于一条记录是错误。
在这里插入图片描述

接口方法:

//定义方法返回MapMap<Object,Object> selectMapById(Integer id);

mapper 文件:

    <!--返回Map1)列名是map的key,列值是map的value2)只能最多返回一行记录。多于一行会报错--><select id="selectMapById" resultType="map">select id,name from student where id=#{stuid}</select>

或者:

<select id="selectMapById" resultType="java.util.HashMap">select id,name from student where id=#{stuid}
</select>

测试文件:

   // 返回Map@Testpublic void testSelectMap() {SqlSession sqlSession = MybatisUtils.getSqlSession();StudentDao dao = sqlSession.getMapper(StudentDao.class); // 这句代码可以自动创建dao接口的实现类对象//调用dao的方法,执行数据库的操作Map<Object, Object> map = dao.selectMapById(1001);System.out.println("m=" + map);}

在这里插入图片描述

1.2 resultMap

resultMap 可以自定义 sql 的结果和 java 对象属性的映射关系。更灵活的把列值赋值给指定属性。
常用在列名和 java 对象属性名不一样的情况。

使用方式:

  1. 先定义 resultMap,指定列名和属性的对应关系。
  2. <select>中把 resultType 替换为 resultMap。

注意:
resultMap和resultType不要一起用,二选一

接口方法:

 /*** 使用resultMap定义映射关系*/List<Student> selectAllStudents();

mapper文件:
在这里插入图片描述

 <!--使用resultMap1)先定义resultMap2)在select标签中,使用resultMap来引用1中定义的。--><!--定义resultMapid:自定义名称,表示你定义的这个resultMaptype:java类型的全限定名称--><resultMap id="studentMap" type="com.zep.domain.Student"><!--定义列名和java属性的关系--><!--主键列,使用id标签column:列名property:java类型的属性名--><id column="id" property="id"/><!--非主键列,使用result标签--><result column="name" property="name" /><result column="email" property="email" /><result column="age" property="age" /></resultMap><select id="selectAllStudents" resultMap="studentMap">select id,name,email,age from student</select>

测试文件:

/**/@Testpublic void testSelectAllStudents() {SqlSession sqlSession = MybatisUtils.getSqlSession();StudentDao dao = sqlSession.getMapper(StudentDao.class);List<Student> students = dao.selectAllStudents();for (Student student : students) {System.out.println("学生=" + student);}sqlSession.close();}

在这里插入图片描述
列名和属性名不同的第一种解决方案:
在这里插入图片描述
在这里插入图片描述

在domain文件夹下新建MyStudent.java:

package com.zep.domain;public class MyStudent {private Integer stuid;private String stuname;private String stuemail;private Integer stuage;@Overridepublic String toString() {return "MyStudent{" +"stuid=" + stuid +", stuname='" + stuname + '\'' +", stuemail='" + stuemail + '\'' +", stuage=" + stuage +'}';}public Integer getStuid() {return stuid;}public void setStuid(Integer stuid) {this.stuid = stuid;}public String getStuname() {return stuname;}public void setStuname(String stuname) {this.stuname = stuname;}public String getStuemail() {return stuemail;}public void setStuemail(String stuemail) {this.stuemail = stuemail;}public Integer getStuage() {return stuage;}public void setStuage(Integer stuage) {this.stuage = stuage;}
}

接口方法:

List<MyStudent> selectMyStudent();

mapper文件:

 <resultMap id="myStudentMap" type="com.zep.domain.MyStudent"><id column="id" property="stuid"/><!--非主键列,使用result标签--><result column="name" property="stuname" /><result column="email" property="stuemail" /><result column="age" property="stuage" /></resultMap><!--列名和属性名不一样--><select id="selectMyStudent" resultMap="myStudentMap">select id,name,email,age from student</select>

测试文件:

 /**/@Testpublic void testSelectMyStudent() {SqlSession sqlSession = MybatisUtils.getSqlSession();StudentDao dao = sqlSession.getMapper(StudentDao.class);List<MyStudent> students = dao.selectMyStudent();for (MyStudent student : students) {System.out.println("学生=" + student);}sqlSession.close();}

在这里插入图片描述
列名和属性名不同的第二种解决方案:
采用列别名的方式,给数据库的列名起一个别名,让这个别名和属性名相同即可!
在这里插入图片描述
接口方法:

 List<MyStudent> selectDiffColProperty();

mapper文件:

<!--列名和属性名不一样:第二种方式resultType的默认原则是 同名的列的值赋值给同名的属性,所以使用列别名(java对象的属性名)即可解决--><select id="selectDiffColProperty" resultType="com.zep.domain.MyStudent">select id as stuid,name as stuname,email as stuemail ,age as stuage from student</select>

测试文件:

@Testpublic void testSelectDiffColProperty() {SqlSession sqlSession = MybatisUtils.getSqlSession();StudentDao dao = sqlSession.getMapper(StudentDao.class);List<MyStudent> students = dao.selectDiffColProperty();for (MyStudent student : students) {System.out.println("###学生=" + student);}sqlSession.close();}

在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/470882.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

API 接口批量测试

ApiPost 创建接口 导入要测试的数据 测试结果 ApiFox 创建接口 导入接口 导入测试数据&#xff0c;可以直接编辑&#xff0c;粘贴进来 测试结果

LeetCode 2342. 数位和相等数对的最大和

文章目录1. 题目2. 解题1. 题目 给你一个下标从 0 开始的数组 nums &#xff0c;数组中的元素都是 正 整数。请你选出两个下标 i 和 j&#xff08;i ! j&#xff09;&#xff0c;且 nums[i] 的数位和 与 nums[j] 的数位和相等。 请你找出所有满足条件的下标 i 和 j &#xff…

软件项目管理-构建之法-四周总结

写在前面 课程名&#xff1a;软件项目管理 授课人&#xff1a;东北师范大学 杨贵福&#xff08; http://www.cnblogs.com/younggift/&#xff09; 教材&#xff1a;《构建之法 - 现代软件工程》 作者&#xff1a;邹欣老师 &#xff08;博客&#xff1a;http://www.cnblogs.com…

一、Vue基础语法学习笔记系列——插值操作(Mustache语法、v-once、v-html、v-text、v-pre、v-cloak)、绑定属性v-bind(绑定class、style)、计算属性

一、插值操作 1. Mustache 如何将data中的文本数据&#xff0c;插入到HTML中呢&#xff1f; 我们已经学习过了&#xff0c;可以通过Mustache语法(也就是双大括号)。 Mustache: 胡子/胡须. 我们可以像下面这样来使用&#xff0c;并且数据是响应式的 2. v-once 但是&#xff0…

LeetCode 2348. 全 0 子数组的数目

文章目录1. 题目2. 解题1. 题目 给你一个整数数组 nums &#xff0c;返回全部为 0 的 子数组 数目。 子数组 是一个数组中一段连续非空元素组成的序列。 示例 1&#xff1a; 输入&#xff1a;nums [1,3,0,0,2,0,0,4] 输出&#xff1a;6 解释&#xff1a; 子数组 [0] 出现了…

二、Vue基础语法学习笔记——事件监听v-on、条件判断(v-if、v-else-if、v-else、v-show)、循环遍历(v-for遍历数组对象,key属性、检测数组更新)、图书案例、双向绑定

四、事件监听 在前端开发中&#xff0c;我们需要经常和用于交互。 这个时候&#xff0c;我们就必须监听用户发生的时间&#xff0c;比如点击、拖拽、键盘事件等等 在Vue中如何监听事件呢&#xff1f;使用v-on指令 v-on介绍 作用&#xff1a;绑定事件监听器 缩写&#xff1a; 预…

LeetCode 2352. 相等行列对

文章目录1. 题目2. 解题1. 题目 给你一个下标从 0 开始、大小为 n x n 的整数矩阵 grid &#xff0c;返回满足 Ri 行和 Cj 列相等的行列对 (Ri, Cj) 的数目。 如果行和列以相同的顺序包含相同的元素&#xff08;即相等的数组&#xff09;&#xff0c;则认为二者是相等的。 示…

三、Vue组件化开发学习笔记——组件化的基本步骤、全局组件和局部组件、父组件和子组件、注册组件的语法糖、模板分离写法、组件的数据存放

一、什么是组件化&#xff1f; 人面对复杂问题的处理方式&#xff1a; 任何一个人处理信息的逻辑能力都是有限的 所以&#xff0c;当面对一个非常复杂的问题时&#xff0c;我们不太可能一次性搞定一大堆的内容。 但是&#xff0c;我们人有一种天生的能力&#xff0c;就是将问题…

LeetCode 2353. 设计食物评分系统(sortedcontainers)

文章目录1. 题目2. 解题1. 题目 设计一个支持下述操作的食物评分系统&#xff1a; 修改 系统中列出的某种食物的评分。返回系统中某一类烹饪方式下评分最高的食物。 实现 FoodRatings 类&#xff1a; FoodRatings(String[] foods, String[] cuisines, int[] ratings) 初始化…

四、Vue组件化开发学习笔记——父子组件通信,父级向子级传值(props),子级向父级传值(自定义事件),slot插槽

一、父子组件的通信 在上一篇博文中&#xff0c;我们提到了子组件是不能引用父组件或者Vue实例的数据的。 但是&#xff0c;在开发中&#xff0c;往往一些数据确实需要从上层传递到下层&#xff1a; 比如在一个页面中&#xff0c;我们从服务器请求到了很多的数据。其中一部分数…

LeetCode 2336. 无限集中的最小数字(SortedSet)

文章目录1. 题目2. 解题1. 题目 现有一个包含所有正整数的集合 [1, 2, 3, 4, 5, …] 。 实现 SmallestInfiniteSet 类&#xff1a; SmallestInfiniteSet() 初始化 SmallestInfiniteSet 对象以包含 所有 正整数。int popSmallest() 移除 并返回该无限集中的最小整数。void ad…

C# - 类_使用新成员隐藏基类成员

1 using System;2 3 namespace 类_使用新成员隐藏基类成员4 {5 // 基类 : Animal6 public class Animal7 {8 // 基类的普通方法Eat(), 并未用Virtual修饰9 public void Eat() 10 { 11 Console.WriteLine("动物吃的方法: …

五、Vue模块化开发学习笔记——JavaScript原始功能、匿名函数的解决方案、使用模块作为出口、CommonJS、ES6 export和import的使用

一、JavaScript原始功能 -在网页开发的早期&#xff0c;js制作作为一种脚本语言&#xff0c;做一些简单的表单验证或动画实现等&#xff0c;那个时候代码还是很少的。 那个时候的代码是怎么写的呢&#xff1f; 直接将代码写在<script>标签中即可 随着ajax异步请求的出现&…

LeetCode 2333. 最小差值平方和(贪心)

文章目录1. 题目2. 解题1. 题目 给你两个下标从 0 开始的整数数组 nums1 和 nums2 &#xff0c;长度为 n 。 数组 nums1 和 nums2 的 差值平方和 定义为所有满足 0 < i < n 的 (nums1[i] - nums2[i])^2 之和。 同时给你两个正整数 k1 和 k2 。你可以将 nums1 中的任意…

[na][tools]快速ping网段工具-QuickPing

一款神器 quickping 能够很快的探测出该网断分出去哪些地址. 在线的会显示绿色 在线的有主机名的显示为亮绿色 转载于:https://www.cnblogs.com/iiiiher/p/5362403.html

六、Webpack详解学习笔记——webpack的安装、起步、配置、loader的使用、webpack中配置Vue、plugin的使用、搭建本地服务器、webpack配置的分离

一、认识webpack 什么是webpack&#xff1f; 这个webpack还真不是一两句话可以说清楚的。我们先看看官方的解释&#xff1a; At its core, webpack is a static module bundler for modern JavaScript applications.从本质上来讲&#xff0c;webpack是一个现代的JavaScript应用…

LeetCode 2349. 设计数字容器系统(SortedSet)

文章目录1. 题目2. 解题1. 题目 设计一个数字容器系统&#xff0c;可以实现以下功能&#xff1a; 在系统中给定下标处 插入 或者 替换 一个数字。 返回 系统中 给定数字 的最小下标。 请你实现一个 NumberContainers 类&#xff1a; NumberContainers() 初始化数字容器系统…

七、Vue cli详解学习笔记——什么是Vue cli ,Vue cli的使用(安装,拉取2.x模板,初始化项目),Vue cli2详解,Runtime-Compiler和Runtime-only区别

一、什么是Vue CLI 如果你只是简单写几个Vue的Demo程序, 那么你不需要Vue CLI. 如果你在开发大型项目, 那么你需要, 并且必然需要使用Vue CLI 使用Vue.js开发大型应用时&#xff0c;我们需要考虑代码目录结构、项目结构和部署、热加载、代码单元测试等事情。如果每个项目都要手…

我们

我们的 转载于:https://www.cnblogs.com/xxzhou/p/5364606.html

LeetCode 2343. 裁剪数字后查询第 K 小的数字

文章目录1. 题目2. 解题1. 题目 给你一个下标从 0 开始的字符串数组 nums &#xff0c;其中每个字符串 长度相等 且只包含数字。 再给你一个下标从 0 开始的二维整数数组 queries &#xff0c;其中 queries[i] [ki, trimi] 。对于每个 queries[i] &#xff0c;你需要&#x…