mybatis和Dao映射的配置文件xml,中什么时候需要用resultType .什么时候用resultMap,及resultType和resultMap的区别

区别:

两者都可以用于映射文件中的<select>语句的返回值,但是两者在返回值上面是有区别的

如下面的两个例子:

使用resultType的

举个例子吧,例子以ibatis为例:
你有个User 对象, 拥有两个字段id,name。
1.你要获取id为123的name
String name = (String) queryForObject("getUserNameByID", id);

<select id="getUserNameByID" resultType="java.lang.String">
 Select name from User where id =#id#
 </select>

  

使用resultMap的

2.你要获取整个User对象
User user = (User) queryForObject("getUserByID", id);

<resultMap class="包.User" id="User">
  <result property="id" column="ID" />
  <result property="name" column="NAME" />
 </resultMap>

<select id="getUserByID" resultMap="User">
 Select ID,NAME from User where id =#id#
 </select>

  

具体的这两个的区别:

(1)如果你需要只是返回一个值,比如说String ,或者是int,那你直接用resultType就行了。

但是你如果是返回一个复杂的对象,就必须定义好这个对象的resultMap的result map。

(2)当然resultType返回一个对象的话也是可以的,见下面的例子:
resultType 也可以返回一个对象
<select id="getUserNameByID" resultType="com.bean.User">
Select * from User where id =#id#
</select>

也可以返回一个封装的对象啊
这个跟resultMap是一样的效果
但是需要注意的是此时select查询的字段只能是你想要的 此时的select所查询的内容只能是所有的实体的属性,如 *  而不能是部分 属性,这就是和resultMap的另一个区别,比如你想要返回user对象的name属性,而不返回age属性的话,用 resultType="com.bean.User" 是不行的,因为用resultType限定所有的属性值,

但是你可以用resultMap可以轻松的解决
但你用resultmap,因为resultmap,因为resultmap那段是我们自己指定的,可能指定的属性只是User的一部分,而且还可以设置默认值,这是result type做不到的:
resultMap里面只定义 name
<resultMap class="包.User" id="User">
  <result property="name" column="NAME" />
 </resultMap>

<select id="getUserByID" resultMap="User">
 Select NAME from User where id =#id#
 </select>

  

当然在我们书写Mybatis的Dao映射文件的时候,有时候回不太清楚到底都应该写哪些内容,此时大家可以按照下面的顺序去书写即可

当我们在使用resultMap的时候,如果映射的对象里面的某些属性也是一个自定义的对象的话,那么此时应该在<resultMap id="...."  Type="...">的内容可以添加上<.collecion>

具体的collection的标签的用法见另一篇博客:https://www.cnblogs.com/isme-zjh/p/12496902.html



 

原文地址:https://www.cnblogs.com/isme-zjh/p/12496905.html

时间: 2024-10-10 20:45:20

mybatis和Dao映射的配置文件xml,中什么时候需要用resultType .什么时候用resultMap,及resultType和resultMap的区别的相关文章

Mybatis之Configuration初始化(配置文件.xml的解析)

源码解读第一步我觉着应该从Mybatis如何解析配置文件开始. 1.先不看跟Spring集成如何解析,先看从SqlSessionFactoryBuilder如果解析的. 1 String resouce = "conf.xml"; 2 InputStream is = Resources.getResourceAsStream(resouce); 3 4 // 构建sqlSession工厂 5 SqlSessionFactory sqlSessionFactory = new SqlS

mybatis配置文件xml中插入新数据

初用mybatis,发现很好的一个操作数据库的框架,里面有一些小技巧,挺简单,很实用,记录一下: mybatis的插入语句: <insert id="insertAsset" parameterType="Criteria">    <selectKey resultType="java.lang.String" keyProperty="condition.Id" order="BEFORE&qu

Mybatis映射文件Mapper.xml中#和$的区别

1."#" 简单来说"#"在编译时使用"?"占位符标记,可以有效防止参数注入,相当于我们使用JDBC操作时的PreparedStatement. 2."$" 直接把参数拼接到SQL中执行相当于JDBC操作时的Statement 3.参数作为非SQL关键字传递 <insert id="addUser" parameterType="User">        insert in

Spring 配置文件XML中&lt;beans&gt;中属性概述

[html] view plaincopy <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.o

mybais 的映射文件,需要从poviderDao.java 的一个 方法 public getProvidersFactors(参数 ) 中传入多个参数到providerDao.xml中的两种方法

方法一: 直接以对象的整体的形式去传入到xml文件中,当然这时候用过满足的条件是:你所想传入的所有的参数,应该都是包含在一个对象中的,此时可以以对象的形式去传入到xml中 如下图示例 实体类 private String id; private String companyName; private String managerName; private String phone; private String address; private String type; #ProviderDao

Mybatis学习记录(二)--Mybatis开发DAO方式

mybatis开发dao的方法通常用两种,一种是传统DAO的方法,一种是基于mapper代理的方法,下面学习这两种开发模式. 写dao之前应该要对SqlSession有一个更加细致的了解 一.mybatis的SqlSession使用范围 SqlSessionFactoryBuilder用于创建SqlSessionFacoty,SqlSessionFacoty一旦创建完成就不需要SqlSessionFactoryBuilder了,因为SqlSession是通过SqlSessionFactory生产

基于MyBatis实现Dao理论

基于MyBatis实现Dao理论 推荐使用xml提供sql 实现接口推荐使用Mapper自动实现DAO接口,让我们更关注sql书写本身 原文地址:https://www.cnblogs.com/sinceForever/p/8454481.html

Mybatis配置文件SqlMapConfig.xml中的标签

SqlMapConfig.xml配置文件中的属性 1 配置内容 properties(属性) settings(全局配置参数) typeAliases(类型别名) typeHandlers(类型处理器) objectFactory(对象工厂) plugins(插件) environments(环境集合属性对象) environment(环境子属性对象) transactionManager(事务管理) dataSource(数据源) mappers(映射器) 注: sqlMapConfg.xml

mybatis配置文件xxxx.xml中缺失返回类型的后果

下面是mybatis配置文件xxxx.xml缺失resultMap的错误: 严重: Servlet.service() for servlet [SpringMVC] in context with path [/ZHDM] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache