博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MyBatis中关于resultType和resultMap的区别
阅读量:5090 次
发布时间:2019-06-13

本文共 4494 字,大约阅读时间需要 14 分钟。

MyBatis中关于resultType和resultMap的区别

MyBatis中关于resultType和resultMap的区别

 

 

MyBatis中在查询进行select映射的时候,返回类型可以用resultType,也可以用resultMap,resultType是直接表示返回类型的(对应着我们的model对象中的实体),而resultMap则是对外部ResultMap的引用(提前定义了db和model之间的隐射key-->value关系),但是resultType跟resultMap不能同时存在。

 

在MyBatis进行查询映射时,其实查询出来的每一个属性都是放在一个对应的Map里面的,其中键是属性名,值则是其对应的值。

①当提供的返回类型属性是resultType时,MyBatis会将Map里面的键值对取出赋给resultType所指定的对象对应的属性。所以其实MyBatis的每一个查询映射的返回类型都是ResultMap,只是当提供的返回类型属性是resultType的时候,MyBatis对自动的给把对应的值赋给resultType所指定对象的属性。

②当提供的返回类型是resultMap时,因为Map不能很好表示领域模型,就需要自己再进一步的把它转化为对应的对象,这常常在复杂查询中很有作用。

 

  下面给出一个例子说明两者的使用差别:

package com.clark.model;import java.util.Date;public class Goods { private Integer id; private Integer cateId; private String name; private double price; private String description; private Integer orderNo; private Date updateTime; public Goods(){ } public Goods(Integer id, Integer cateId, String name, double price, String description, Integer orderNo, Date updateTime) { super(); this.id = id; this.cateId = cateId; this.name = name; this.price = price; this.description = description; this.orderNo = orderNo; this.updateTime = updateTime; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getCateId() { return cateId; } public void setCateId(Integer cateId) { this.cateId = cateId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public Integer getOrderNo() { return orderNo; } public void setOrderNo(Integer orderNo) { this.orderNo = orderNo; } public Date getTimeStamp() { return updateTime; } public void setTimeStamp(Date updateTime) { this.updateTime = updateTime; } @Override public String toString() { return "[goods include:Id="+this.getId()+",name="+this.getName()+ ",orderNo="+this.getOrderNo()+",cateId="+this.getCateId()+ ",updateTime="+this.getTimeStamp()+"]"; } }
insert into goods(id,cate_id,name,price,description,order_no,update_time) values(#{id},#{cateId},#{name},#{price},#{description},#{orderNo},#{updateTime})
package com.clark.mybatis;import java.io.IOException;import java.io.Reader;import java.util.List;import org.apache.ibatis.io.Resources; import org.apache.ibatis.session.SqlSession; import org.apache.ibatis.session.SqlSessionFactory; import org.apache.ibatis.session.SqlSessionFactoryBuilder; import com.clark.model.Goods; public class TestGoods { public static void main(String[] args) { String resource = "configuration.xml"; try { Reader reader = Resources.getResourceAsReader(resource); SqlSessionFactory sessionFactory = new SqlSessionFactoryBuilder().build(reader); SqlSession session = sessionFactory.openSession();
 //使用resultType的情况 Goods goods = (Goods)session.selectOne("clark.selectGoodById", 4); System.out.println(goods.toString());
 //使用resultMap的情况 List
gs = session.selectList("clark.selectAllGoods"); for (Goods goods2 : gs) { System.out.println(goods2.toString()); } // Goods goods = new Goods(4, 12, "clark", 12.30, "test is ok", 5, new Date()); // session.insert("clark.insertGood", goods); // session.commit(); } catch (IOException e) { e.printStackTrace(); } } }
结果输出为:
[goods include:Id=4,name=clark,orderNo=null,cateId=null,updateTime=null]---使用resultType的结果
-------使用resultMap的结果-----------------

[goods include:Id=4,name=clark,orderNo=5,cateId=12,updateTime=Wed Sep 17 15:29:58 CST 2014][goods include:Id=1,name=诺基亚N85,orderNo=1,cateId=1,updateTime=Wed Sep 17 13:52:51 CST 2014]

[goods include:Id=2,name=金立 A30,orderNo=2,cateId=1,updateTime=Wed Sep 17 13:53:11 CST 2014][goods include:Id=3,name=金立 A30,orderNo=3,cateId=2,updateTime=Wed Sep 17 15:07:38 CST 2014]

转载于:https://www.cnblogs.com/handsome1013/p/4994788.html

你可能感兴趣的文章
javascript高级程序设计一书----关于创建和对象继承的总结
查看>>
媒体电话
查看>>
Web开发者欣喜若狂的40个UI设计工具和资源
查看>>
整数拼数 C语言版
查看>>
WPF 绘制曲线图
查看>>
/proc 目录详细说明
查看>>
你的灯还亮着吗阅读笔记之二
查看>>
Hive(2)-Hive的安装,使用Mysql替换derby,以及一丢丢基本的HQL
查看>>
在固定宽度 下计算出实际的行高
查看>>
hdu 1873 看病要排队
查看>>
多线程学习笔记
查看>>
《城市化》(顾朝林)-重要术语
查看>>
GridPanel 带头和锁定列共存
查看>>
为CentOS的软件包管理者pirut添加本地存储库
查看>>
scope_ref的实现
查看>>
带参数游标,ref游标 动态sql
查看>>
[wordpress]后台自定义菜单字段和使用wordpress color picker
查看>>
【Kindle】pdf转mobi适合kindle查看格式
查看>>
Spotlight的连接设置
查看>>
简单封装数据库类
查看>>