溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Mybatis批量更新實體對象的方式是什么

發(fā)布時間:2021-11-26 13:16:24 來源:億速云 閱讀:356 作者:柒染 欄目:開發(fā)技術

這期內(nèi)容當中小編將會給大家?guī)碛嘘PMybatis批量更新實體對象的方式是什么,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

Mybatis批量更新實體對象

(1)Dao層接口

/**
     * 根據(jù)更新采購計劃(批量)
     * @param plans
     */
    void batchUpdatePlan(List<PubPurchasePlan> plans);

(2)Mapper.xml 文件

<sql id="batchUpdatePlanCondition">
    <where>
        <foreach collection="list" item="item" open="( " separator=") or (" close=" )">
            comId = #{item.comId} AND id = #{item.id}
        </foreach>
    </where>
</sql>
<update id="batchUpdatePlan" parameterType="list">
        UPDATE pub_purchase_plan
        <trim prefix="set" suffixOverrides=",">
            <trim prefix="warehouseId=case" suffix="end,">
                 <foreach collection="list" item="item" index="index">
                    WHEN comId = #{item.comId} AND id = #{item.id} THEN #{item.warehouseId}
                 </foreach>
            </trim>
            <trim prefix="productId=case" suffix="end,">
                 <foreach collection="list" item="item" index="index">
                   WHEN comId = #{item.comId} AND id = #{item.id} THEN #{item.productId}
                 </foreach>
            </trim>
            <trim prefix="amount=case" suffix="end,">
                 <foreach collection="list" item="item" index="index">
                   WHEN comId = #{item.comId} AND id = #{item.id} THEN #{item.amount}
                 </foreach>
            </trim>
            <trim prefix="deleted=case" suffix="end,">
                 <foreach collection="list" item="item" index="index">
                   WHEN comId = #{item.comId} AND id = #{item.id} THEN #{item.deleted}
                 </foreach>
            </trim>
            <trim prefix="price=case" suffix="end,">
                 <foreach collection="list" item="item" index="index">
                   WHEN comId = #{item.comId} AND id = #{item.id} THEN #{item.price}
                 </foreach>
            </trim>
            <trim prefix="type=case" suffix="end,">
                 <foreach collection="list" item="item" index="index">
                   WHEN comId = #{item.comId} AND id = #{item.id} THEN #{item.type}
                 </foreach>
            </trim>
        </trim>
        <include refid="batchUpdatePlanCondition"/>
</update>

Mybatis批量更新數(shù)據(jù)三種方法效率對比

探討批量更新數(shù)據(jù)三種寫法的效率問題

實現(xiàn)方式有三種

  • 1、用for循環(huán)通過循環(huán)傳過來的參數(shù)集合,循環(huán)出N條sql

  • 2、用mysql的case when 條件判斷變相的進行批量更新

  • 3、用ON DUPLICATE KEY UPDATE進行批量更新

下面進行實現(xiàn)。

注意第一種方法要想成功,需要在db鏈接url后面帶一個參數(shù) &allowMultiQueries=true

即: jdbc:mysql://localhost:3306/mysqlTest?characterEncoding=utf-8&allowMultiQueries=true

其實這種東西寫過來寫過去就是差不多一樣的代碼,不做重復的贅述,直接上代碼。

 
    <!-- 批量更新第一種方法,通過接收傳進來的參數(shù)list進行循環(huán)著組裝sql -->
     <update id="updateBatch" parameterType="java.util.List" >
        <foreach collection="list" item="item" index="index" open="" close="" separator=";">
            update standard_relation
            <set >
                <if test="item.standardFromUuid != null" >
                    standard_from_uuid = #{item.standardFromUuid,jdbcType=VARCHAR},
                </if>
                <if test="item.standardToUuid != null" >
                    standard_to_uuid = #{item.standardToUuid,jdbcType=VARCHAR},
                </if>
                <if test="item.gmtModified != null" >
                    gmt_modified = #{item.gmtModified,jdbcType=TIMESTAMP},
                </if>
            </set>
            where id = #{item.id,jdbcType=BIGINT}
        </foreach>
    </update>
 
    <!-- 批量更新第二種方法,通過 case when語句變相的進行批量更新 -->
    <update id="updateBatch" parameterType="java.util.List" >
        update standard_relation
        <trim prefix="set" suffixOverrides=",">
            <trim prefix="standard_from_uuid =case" suffix="end,">
                <foreach collection="list" item="i" index="index">
                    <if test="i.standardFromUuid!=null">
                        when id=#{i.id} then #{i.standardFromUuid}
                    </if>
                </foreach>
            </trim>
            <trim prefix="standard_to_uuid =case" suffix="end,">
                <foreach collection="list" item="i" index="index">
                    <if test="i.standardToUuid!=null">
                        when id=#{i.id} then #{i.standardToUuid}
                    </if>
                </foreach>
            </trim>
            <trim prefix="gmt_modified =case" suffix="end,">
                <foreach collection="list" item="i" index="index">
                    <if test="i.gmtModified!=null">
                        when id=#{i.id} then #{i.gmtModified}
                    </if>
                </foreach>
            </trim>
        </trim>
        where
        <foreach collection="list" separator="or" item="i" index="index" >
            id=#{i.id}
        </foreach>
    </update>
批量更新第三種方法,用ON DUPLICATE KEY UPDATE
 <insert id="updateBatch" parameterType="java.util.List">
        insert into standard_relation(id,relation_type, standard_from_uuid,
        standard_to_uuid, relation_score, stat,
        last_process_id, is_deleted, gmt_created,
        gmt_modified,relation_desc)VALUES
        <foreach collection="list" item="item" index="index" separator=",">
            (#{item.id,jdbcType=BIGINT},#{item.relationType,jdbcType=VARCHAR}, #{item.standardFromUuid,jdbcType=VARCHAR},
            #{item.standardToUuid,jdbcType=VARCHAR}, #{item.relationScore,jdbcType=DECIMAL}, #{item.stat,jdbcType=TINYINT},
            #{item.lastProcessId,jdbcType=BIGINT}, #{item.isDeleted,jdbcType=TINYINT}, #{item.gmtCreated,jdbcType=TIMESTAMP},
            #{item.gmtModified,jdbcType=TIMESTAMP},#{item.relationDesc,jdbcType=VARCHAR})
        </foreach>
        ON DUPLICATE KEY UPDATE
        id=VALUES(id),relation_type = VALUES(relation_type),standard_from_uuid = VALUES(standard_from_uuid),standard_to_uuid = VALUES(standard_to_uuid),
        relation_score = VALUES(relation_score),stat = VALUES(stat),last_process_id = VALUES(last_process_id),
        is_deleted = VALUES(is_deleted),gmt_created = VALUES(gmt_created),
        gmt_modified = VALUES(gmt_modified),relation_desc = VALUES(relation_desc)
    </insert>
 @Override
    public void updateStandardRelations() {
        List<StandardRelation> list=standardRelationMapper.selectByStandardUuid("xiemingjieupdate");
        for(StandardRelation tmp:list){
            tmp.setStandardFromUuid(tmp.getStandardFromUuid()+"update");
            tmp.setStandardToUuid(tmp.getStandardToUuid()+"update");
        }
        long begin=System.currentTimeMillis();
        standardRelationManager.updateBatch(list);
        long end=System.currentTimeMillis();
        System.out.print("當前的批量更新的方法用時"+(end-begin)+"ms");
    }

Mybatis批量更新實體對象的方式是什么

sql語句for循環(huán)效率其實相當高的,因為它僅僅有一個循環(huán)體,只不過最后update語句比較多,量大了就有可能造成sql阻塞。

case when雖然最后只會有一條更新語句,但是xml中的循環(huán)體有點多,每一個case when 都要循環(huán)一遍list集合,所以大批量拼sql的時候會比較慢,所以效率問題嚴重。使用的時候建議分批插入。

duplicate key update可以看出來是最快的,但是一般大公司都禁用,公司一般都禁止使用replace into和INSERT INTO … ON DUPLICATE KEY UPDATE,這種sql有可能會造成數(shù)據(jù)丟失和主從上表的自增id值不一致。而且用這個更新時,記得一定要加上id,而且values()括號里面放的是數(shù)據(jù)庫字段,不是java對象的屬性字段。

Mybatis批量更新實體對象的方式是什么

根據(jù)效率,安全方面綜合考慮,選擇適合的很重要。

上述就是小編為大家分享的Mybatis批量更新實體對象的方式是什么了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI