出处http://haohaoxuexi.iteye.com/blog/1337009
MyBatis中在查询进行select映射的时候,返回类型可以用resultType,也可以用resultMap,resultType是直接表示返回类型的,而resultMap则是对外部ResultMap的引用,但是resultType跟resultMap不能同时存在。在MyBatis进行查询映射的时候,其实查询出来的每一个属性都是放在一个对应的Map里面的,其中键是属性名,值则是其对应的值。当提供的返回类型属性是resultType的时候,MyBatis会将Map里面的键值对取出赋给resultType所指定的对象对应的属性。所以其实MyBatis的每一个查询映射的返回类型都是ResultMap,只是当我们提供的返回类型属性是resultType的时候,MyBatis对自动的给我们把对应的值赋给resultType所指定对象的属性,而当我们提供的返回类型是resultMap的时候,因为Map不能很好表示领域模型,我们就需要自己再进一步的把它转化为对应的对象,这常常在复杂查询中很有作用。
有这样一个Blog.java文件
import java.util.List; public class Blog { private int id; private String title; private String content; private String owner; private List<Comment> comments; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getOwner() { return owner; } public void setOwner(String owner) { this.owner = owner; } public List<Comment> getComments() { return comments; } public void setComments(List<Comment> comments) { this.comments = comments; } @Override public String toString() { return " ----------------博客-----------------\n id: " + id + "\n title: " + title + "\n content: " + content + "\n owner: " + owner; } }
其所对应的数据库表中存储有id,title,Content,Owner属性,那么当我们进行下面这样一个查询映射的时候
<typeAlias alias="Blog" type="com.tiantian.mybatis.model.Blog"/><!--来自MyBatis的配置文件mybatis_config.xml--> <select id="selectBlog" parameterType="int" resultType="Blog"> select * from t_blog where id = #{id} </select><!--来自SQL映射文件BlogMapper.xml-->
MyBatis会自动创建一个ResultMap对象,然后基于查找出来的属性名进行键值对封装,然后再看到返回类型是Blog对象,再从ResultMap中取出与Blog对象对应的键值对进行赋值。
当返回类型直接是一个ResultMap的时候也是非常有用的,这主要用在进行复杂联合查询上,因为进行简单查询是没有什么必要的。我们先看看一个返回类型为ResultMap的简单查询,再看看复杂查询的用法。
简单查询的写法
<resultMap type="Blog" id="BlogResult"> <id column="id" property="id"/> <result column="title" property="title"/> <result column="content" property="content"/> <result column="owner" property="owner"/> </resultMap> <select id="selectBlog" parameterType="int" resultMap="BlogResult"> select * from t_blog where id = #{id} </select>
select映射中resultMap的值是一个外部resultMap的id,表示返回结果映射到哪一个resultMap上,外部resultMap的type属性表示该resultMap的结果是一个什么样的类型,这里是Blog类型,那么MyBatis就会把它当作一个Blog对象取出。resultMap节点的子节点id是用于标识该对象的id的,而result子节点则是用于标识一些简单属性的,其中的Column属性表示从数据库中查询的属性,Property则表示查询出来的属性对应的值赋给实体对象的哪个属性。简单查询的resultMap的写法就是这样的。接下来看一个复杂一点的查询。
有一个Comment类,其中有一个Blog的引用,表示是对哪个Blog的Comment,那么我们在查询Comment的时候把其对应的Blog也要查出来赋给其blog属性。
import java.util.Date; public class Comment { private int id; private String content; private Date commentDate = new Date(); private Blog blog; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public Date getCommentDate() { return commentDate; } public void setCommentDate(Date commentDate) { this.commentDate = commentDate; } public Blog getBlog() { return blog; } public void setBlog(Blog blog) { this.blog = blog; } public String toString() { return blog + "\n ----------------评论-----------------\n id: " + id + "\n content: " + content + "\n commentDate: " + commentDate; } }
其写法是这样的
<!--来自CommentMapper.xml文件 --> <resultMap type="Comment" id="CommentResult"> <association property="blog" select="selectBlog" column="blog" javaType="Blog"/> </resultMap> <select id="selectComment" parameterType="int" resultMap="CommentResult"> select * from t_Comment where id = #{id} </select> <select id="selectBlog" parameterType="int" resultType="Blog"> select * from t_Blog where id = #{id} </select>
其访问情况是这样的,先是请求id为selectComment的select映射,然后得到一个id为CommentResult的ResultMap对象,我们可以看到在对应的resultMap的返回类型是一个Comment对象,其中只有一个association节点,而没有像前面说的简单查询所对应的id,result子节点,但是其仍会把对应的id等属性赋给Comment对象,这就是前面所说的MyBatis拥有自动封装功能,只要你提供了返回类型,MyBatis会根据自己的判断来利用查询结果封装对应的对象,所以前面的简单查询中,如果你不在resultMap中明确的指出id对应哪个字段,title对应哪个字段,MyBatis也会根据自身的判断来帮你封装,MyBatis的自身判断是把查询的field或其对应的别名与返回对象的属性进行比较,如果相匹配且类型也相匹配,MyBatis则会对其进行赋值。在上面对应的resultMap中关联了一个blog属性,其对应的JAVA类型为Blog,在上述的写法中,关联对象是通过子查询来进行关联的,当然也可以直接通过关联查询来进行关联。上面的association子节点中,Property属性表示是resultMap返回类型的哪个关联属性,对于上面的例子就是Comment管理的blog属性;select表示进行哪个select映射来映射对应的关联属性,即会去请求id为select所对应的值的select映射 来查询出其所关联的属性对象;Column表示当前关联对象在id为CommentResult的resultMap中所对应的键值对,该键值对将作为对关联对象子查询的参数,即将把在selectComment中查询出来的blog属性的值作为参数传给进行关联对象blog的子查询selectBlog的参数;javaType表示当前关联对象在JAVA中是什么类型。
上述介绍的是一对一或一对多的情况下,对一的一方的关联的查询。在实际应用中还有一个用的比较多的应用是通过一的一方查出对应的多的一方,在拿出多的一方的时候也同样要把一的一方关联上,即在上述例子中,在拿出Blog对象的时候,就把其对应的Comment全部拿出来,在拿出Comment的时候也还是需要把其对应的Blog拿出来,这是在JAVA中通过一次请求就拿出来的。写法如下:
<!-- 来自BlogMapper.xml文件 --> <resultMap type="Blog" id="BlogResult"> <id column="id" property="id"/> <collection property="comments" select="selectCommentsByBlog" column="id" ofType="Comment"></collection> </resultMap> <resultMap type="Comment" id="CommentResult"> <association property="blog" javaType="Blog" column="blog" select="selectBlog"/> </resultMap> <select id="selectBlog" parameterType="int" resultMap="BlogResult"> select * from t_blog where id = #{id} </select> <!-- 通过Blog来查找Comment --> <select id="selectCommentsByBlog" parameterType="int" resultMap="CommentResult"> select * from t_Comment where blog = #{blogId} </select>
上述请求的入口是id为selectBlog的select映射,返回结果为id为BlogResult的resultMap,id为BlogResult的类型为Blog,其中指定了id的属性和字段,指定id将对MyBatis内部的构造作用非常大。其中关联了一个comments对象,因为一个Blog可以有很多Comment,该comments为一个集合,所以用集合collection进行映射,其中的select还是表示进行哪个子查询来查询对应的comments,column表示把上述查出来的哪个字段值当作参数传给子查询,ofType也是表示返回类型,这里的返回类型是集合内部的类型,之所以用ofType而不是用type是MyBatis内部为了和关联association进行区别。
测试代码:
@Test public void selectCommentsByBlogTest() { SqlSession session = Util.getSqlSessionFactory().openSession(); CommentMapper commentMapper = session.getMapper(CommentMapper.class); List<Comment> comments = commentMapper.selectCommentsByBlog(6); for (Comment comment : comments) System.out.println(comment); session.close(); } /** * 查询单条记录 */ @Test public void testSelectOne() { SqlSession session = Util.getSqlSessionFactory().openSession(); BlogMapper blogMapper = session.getMapper(BlogMapper.class); Blog blog = blogMapper.selectBlog(6); List<Comment> comments = blog.getComments(); if (comments != null) { System.out.println("--------------Comments Size------------" + comments.size()); for (Comment comment : comments) System.out.println(comment); } session.close(); }
相关推荐
resultType和resultMap都是MyBatis中用于将查询结果映射到Java对象的方式,但是它们之间存在着很大的区别。resultType适用于数据库中的列名和实体类的属性名一致的情况,而resultMap适用于数据库中的列名和实体类的...
- **ResultHandler**:除了使用`resultType`和`resultMap`,还可以通过`SqlSession`的`selectList`方法配合`ResultHandler`进行结果处理。 4. **最佳实践**: - **区分ResultMap**:对于不同查询,尽量使用不同的...
在MyBatis中,`resultType` 和 `resultMap` 是两种不同的方式,用于处理SQL查询结果到Java对象的映射。理解它们的区别对于优化MyBatis映射文件的编写和提升代码的可维护性至关重要。 1. **resultType**: - `...
在MyBatis中,resultType和resultMap是两种不同的方式,用于处理SQL查询结果到Java对象的映射。这两种方式各有特点,适用于不同场景。 **一、resultType** resultType是MyBatis中最简单的结果映射方式,它直接指定...
MyBatis resultMap 详解 MyBatis 中的 resultMap 是一个非常重要的概念,它负责将查询...MyBatis 的 resultMap 是一个非常强大的工具,它可以帮助我们将查询结果映射到 Java 对象中,使得我们的开发更加方便和高效。
在MyBatis中,`resultType` 和 `resultMap` 是两种不同的结果集映射方式,它们用于将数据库查询的结果转换为Java对象。在处理查询返回的数据时,这两个概念是至关重要的。 `resultType` 是一种简单的方式,它直接...
MyBatis是一个流行的Java持久层框架,它简化了数据库操作,通过XML或注解的方式将SQL语句与...在实际开发中,根据业务需求,灵活配置和管理`resultMap`,以及适当地利用缓存策略,将使你的MyBatis应用更加高效和健壮。
OrderByInterceptor,配合PageHelper实现字段...插件通过ResultMap或ResultType读取映射关系,若没有设置,则根据驼峰转换规则。注:当有联表查询时,多个表中含有相同字段,且没有显示映射这个相同的字段,则会有问题
首先,我们定义了两个JavaBean类,`DetailVO` 和 `RuleVO`,用于表示一对多关系中的“一”和“多”。 ##### DetailVO ```java public class DetailVO implements Serializable { private static final long ...
2. MyBatis 中的 resultmap 和 resulttype 的区别:resultmap 是 MyBatis 中的一种配置项,用于指定结果集的映射关系,而 resulttype 则是指定结果集的类型。resultmap 中可以包含多个 resulttype,用于指定不同列的...
本资料主要探讨的是MyBatis中的两个关键标签:`select`和`resultMap`,这两个标签在映射文件中起着至关重要的作用。 `select`标签是MyBatis用于执行SQL查询的标签,它允许我们将SQL语句嵌入到XML配置文件中。`...
输出映射使用resultType或resultMap,resultType简单地根据列名与POJO属性匹配,而resultMap则允许进行更高级的映射,包括处理列名与属性名不一致的情况,以及一对一、一对多的关联映射。 高级映射是MyBatis的一个...
在 MyBatis 中,当我们进行查询映射时,有两种返回类型可选:`resultType` 和 `resultMap`。`resultType` 直接指定了返回对象的类型,而 `resultMap` 是引用外部的 ResultMap 配置,两者不能同时使用。默认情况下,...
13. **Mybatis ResultMap与ResultType**: - ResultType简单地映射查询结果到指定类型,要求字段名与实体类属性名一致。 - ResultMap允许自定义映射规则,即使字段名不同也能正确映射。 14. **@PostConstruct与@...
5. **结果映射**:MyBatis允许自定义复杂的结果映射,包括一对一、一对多、多对一的关联映射,以及使用ResultMap和ResultType来处理查询结果。 6. **参数映射**:MyBatis的参数映射机制使得传递参数变得简单,包括...
7. **参数处理与结果映射**:深入研究参数对象的传递,包括#{}与${}的区别,以及自动映射、ResultMap、ResultType等结果处理机制。 8. **动态SQL**:介绍Mybatis的动态SQL功能,如if、choose、when、otherwise、...