站保站

服务市场
  • 网站市场
  • 单机游戏
  • 平台大厅
  • 转让市场
  • 发卡市场
  • 广告市场
  • 下载市场
  • 收录市场
  • 本站平台
    平台客服
    微信Q群



    平台微博/weibo    平台微信/公众号    平台抖音/快手   
    曝光台    保障    地图   
    上传资源 快速赚钱
    站保站    登录      |  注册  |  

    只需一步,快速开始!

     找回密码   |   协议
    热门搜索: 网站开发 App报毒 挖矿源码 代办资质

    Mybatis-关联和集合

    • 时间:2020-10-27 22:41 编辑:红色小鱼 来源: 阅读:153
    • 扫一扫,手机访问
    摘要:

    关联:

    <association property="author" column="blog_author_id" javaType="Author">
        <id property="id" column="author_id"/>
        <result property="username" column="author_username"/>
    </association>
    
    • 1
    • 2
    • 3
    • 4

    处理一对一关系。

    association标签属性:

    property :javaBean子实体属性名。

    javaType :java类完全限定名。如果是内置类型或者配置了别名,可以使用简称。如果子实体是一个HashMap,应该指定javaType的类型为hashMap。关于查询结果是一个map参照select部分。

    jdbcType :JDBC要求在以下条件下指定该属性,但mybatis不做要求。

    插入,更新,删除操作且列值允许为空。

    typeHandler :不指定,使用默认即可。根据需要覆盖默认类型处理器。

    嵌套Select查询:

    Column: 数据库中的列名,或者是列的别名。一般情况下,这和传递给 resultSet.getString(columnName) 方法的参数一样。 注意:在使用复合主键的时候,你可以使用 column="{prop1=col1,prop2=col2}" 这样的语法来指定多个传递给嵌套 Select 查询语句的列名。这会使得 prop1 和 prop2 作为参数对象,被设置为对应嵌套 Select 语句的参数。

    Select :嵌套select标签的id。参数取自column属性。

    fetchType:

    lazy:关联查询延迟加载。

    Eager:关联查询立即加载。默认值。

    需要规避的问题:

    延迟加载存在N+1问题。第一次查询,符合条件的User有n个,执行了一次select。第二次查询就要查询n个dept,执行n次select。

    如果保证sql设计不会出现n+1问题,嵌套select是个不错的选择。

    嵌套结果映射:

    resultMap :association属性。结果映射id。

    columnPrefix :association属性,给association包含的所有列添加前缀参与映射。

    notNullColumn :assocaition属性。

    mybatis默认,至少有一个列不为null,子对象才会被创建。

    该属性指定哪些列不能为空,指定列都不为空,才返回子对象。

    autoMapping :是否开启自动映射。不能搭配嵌套select使用。

    外部关联:

    <!--assocaition使用resultMap属性外部关联-->
    <resultMap id="blogResult" type="Blog">
        <id property="id" column="blog_id" />
        <result property="title" column="blog_title"/>
        <association property="author" column="blog_author_id" javaType="Author" resultMap="authorResult"/>
    </resultMap>
    
    <resultMap id="authorResult" type="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"/>
    </resultMap>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14

    内部关联

    <resultMap id="blogResult" type="Blog">
        <id property="id" column="blog_id" />
        <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"/>
        </association>
    </resultMap>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    多关联:

    <resultMap id="blogResult" type="Blog">
        <id property="id" column="blog_id" />
        <result property="title" column="blog_title"/>
        <association property="author" resultMap="authorResult" />
        <association property="coAuthor" resultMap="authorResult"
        columnPrefix="co_"/>
    </resultMap>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    集合:

    collection标签属性:

    property :

    pojo中的集合属性名称。

    javaType :

    pojo中集合的类型。

    ofType :

    pojo中集合属性内部的类型。

    嵌套Select查询:

    column :同,关联-嵌套select查询。

    select :同,关联-嵌套select查询。

    <resultMap id="blogResult" type="Blog">
        <collection property="posts" javaType="ArrayList" column="id" ofType="Post" select="selectPostsForBlog"/>
    </resultMap>
    
    <select id="selectBlog" resultMap="blogResult">
        SELECT * FROM BLOG WHERE ID = #{id}
    </select>
    
    <select id="selectPostsForBlog" resultType="Post">
        SELECT * FROM POST WHERE BLOG_ID = #{id}
    </select>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    嵌套结果映射:

    resultMap :同,关联-嵌套结果映射。

    columnPrefix :同,关联-嵌套结果映射。

    外部关联

    <resultMap id="blogResult" type="Blog">
        <id property="id" column="blog_id" />
        <result property="title" column="blog_title"/>
        <collection property="posts" ofType="Post" resultMap="blogPostResult" columnPrefix="post_"/>
    </resultMap>
    
    <resultMap id="blogPostResult" type="Post">
        <id property="id" column="id"/>
        <result property="subject" column="subject"/>
        <result property="body" column="body"/>
    </resultMap>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    内部关联

    <resultMap id="blogResult" type="Blog">
        <id property="id" column="blog_id" />
        <result property="title" column="blog_title"/>
        <collection property="posts" ofType="Post">
            <id property="id" column="post_id"/>
            <result property="subject" column="post_subject"/>
            <result property="body" column="post_body"/>
        </collection>
    </resultMap>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 全部评论(0)
    上一篇:Oracle表空间扩容
    下一篇:C# 使用Redis
    • 最新

    信息加载中,请等待

    微信客服(速回)

    微信客服(慢回)



    企业微信客服二维码
    联系我们
    平台客服: 平台QQ客服

    平台电话:400电话迁移中!

    平台邮箱:28292383@qq.com

    工作时间:周一至周五:早10:00 晚:18:00

    营业执照     网站ICP备案:鲁ICP备20027607号-1     鲁公网安备:37068702000078号     增值电信业务经营许可证、在线数据与交易处理业务许可证:鲁B2-20200681      © 2016-2024 站保站  https://www.zhanbaozhan.com/ 版权所有!      平台规范:   关于我们   广告合作   隐私条款   免责声明   法律声明   服务条款   网站地图   平台工单!