当前位置:   article > 正文

【MyBatis】关于MyBatis批量更新的几种方式_mybatis xml 批量更新

mybatis xml 批量更新

1. Java代码循环执行sql,逐条更新

这种方式就是将需要更新的数据,循环调用update方法去更新数据,实现代码如下:

public void test() {
        // 需要更新的集合
        List<HashMap<String, Object>> updateMap = new ArrayList<>();
        HashMap<String, Object> param = new HashMap<>(3);
        param.put("name", "test");
        param.put("price", 12.1);
        param.put("id", 1223);
        updateMap.add(param);
        // 循环执行更新
        updateMap.stream().forEach(map -> {
            sqlSession.update("update.updatePrice", map);
        });
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

XML文件如下:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="update">
    <!--更新price表-->
    <update id="updatePrice">
        update price_info
        <set>
            <if test="name != null and name !=''">
                name = #{name},
            </if>
            <if test="price != null">
                sex = #{price}
            </if>
        </set>
        where id = #{id}
    </update>
</mapper>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

这种方法显而易见的最大问题就是每次都要去操作数据库,数据量大了可能会造成sql阻塞但是效率还是挺高。

2. 通过传入list进行遍历

 public void test() {
        // 需要更新的集合
        List<HashMap<String, Object>> updateMap = new ArrayList<>();
        HashMap<String, Object> param = new HashMap<>(3);
        param.put("id", "1234");
        param.put("status", "2");
        param.put("price", "22");
        updateMap.add(param);
        sqlSession.update("supplierSku.updatePrice", updateMap);
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

XML文件如下:

<update id="updatePrice">
        <foreach collection="list" item="item" index="index" open="" close="" separator=";">
            update price_info
            <set>

                <if test="item.status != null and item.status != ''">
                    status = #{item.status},
                </if>
                <if test="item.price != null and item.price != ''">
                    price = #{item.price},
                </if>
            </set>
            where id = #{item.id}
        </foreach>
    </update>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

其实这种和第一种方式一样,只是吧循环list放到了XML中去处理。

3. 通过case,when变相实现批量更新

    public void test() {
        // 需要更新的集合
        List<HashMap<String, Object>> updateMap = new ArrayList<>();
        HashMap<String, Object> param = new HashMap<>(3);
        param.put("id", "1234");
        param.put("status", "2");
        param.put("price_end_date", new Date());
        updateMap.add(param);
        sqlSession.update("supplierSku.updateSupplierSkuPrice", updateMap);
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

XML文件如下:

<update id="updateSupplierSkuPrice" parameterType="java.util.List">
        update price_info
        <trim prefix="set" suffixOverrides=",">
            <trim prefix="status =case" suffix="end,">
                <foreach collection="list" item="i" index="index">
                    <if test="i.status!=null and i.status!= ''">
                        when id=#{i.id} then #{i.status}
                    </if>
                </foreach>
            </trim>
            <trim prefix="price_end_date =case" suffix="end,">
                <foreach collection="list" item="i" index="index">
                    <if test="i.price_end_date!=null">
                        when id=#{i.id} then #{i.price_end_date}
                    </if>
                </foreach>
            </trim>
        </trim>
        where
        <foreach collection="list" separator="or" item="i" index="index" >
            id=#{i.id}
        </foreach>
    </update>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

使用case,when最后会变成一条sql语句,但是每次都得去遍历list集合,数据量大了会影响效率问题

PS:只有string类型的数据才能使用 xxx != ’ ’ 当其他类型使用就会报类型转换错误

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/468689
推荐阅读
相关标签
  

闽ICP备14008679号