Mybatis resultMap经验

Posted cyqjava

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis resultMap经验相关的知识,希望对你有一定的参考价值。

Mybatis中的resultMap使用经验:
先来看一个官方的例子:
<resultMap id="detailedBlogResultMap" type="Blog">
  <constructor>
    <idArg column="blog_id" javaType="int"/>
  </constructor>
  <result property="title" column="blog_title"/>
  <association property="author" javaType="Author">
    <id property="id" column="author_id"/>
    <result property="username" column="author_username"/>
    <result property="password" column="author_password"/>
    <result property="email" column="author_email"/>
    <result property="bio" column="author_bio"/>
    <result property="favouriteSection" column="author_favourite_section"/>
  </association>
  <collection property="posts" ofType="Post">
    <id property="id" column="post_id"/>
    <result property="subject" column="post_subject"/>
    <association property="author" javaType="Author"/>
    <collection property="comments" ofType="Comment">
      <id property="id" column="comment_id"/>
    </collection>
    <collection property="tags" ofType="Tag" >
      <id property="id" column="tag_id"/>
    </collection>
    <discriminator javaType="int" column="draft">
      <case value="1" resultType="DraftPost"/>
    </discriminator>
  </collection>
</resultMap>
官方在这个例子中,对很多人来说有四个标签比较陌生,constructor,discriminator这两个我的使用频率不高,根据字面意思也可以看来,第一个是构造方法,这个在实际的业务中基本上是没有用的,这个在后面再说;第二个实际上和java中的 switch比较相似,根据value返回返回特定的结果集;association 这个标签可以看成是一个单一对象,注意这里使用的是javaType属性;collection这个标签从字面上就知道是一个集合,这里使用的属性是ofType,只要不使用错,就没有问题了,查询出来的结果会自动注入到Type中。后面这两个标签也都支持resultMap属性,所以也可以在其他地方定义好,引用正确就行了。以上是我的一个经验,有什么问题大家可以和我留言交流!
 



























以上是关于Mybatis resultMap经验的主要内容,如果未能解决你的问题,请参考以下文章

mybatis里面resultmap的问题

MyBatis注解开发的两种方法@Results和resultMap

MyBatis中关于resultType和resultMap的区别

Mybatis resultMap经验

mybatis mapper xml文件配置resultmap时,id行和result行有什么区别?

笔记:MyBatis Mapper XML文件详解 - Result Maps