Mybatis批量操作sql写法示例(批量新增、更新)

作者:Leafage 时间:2022-12-06 15:19:16 

在使用foreach时,collection属性值的三种情况:

如果传入的参数类型为List时,collection的默认属性值为list,同样可以使用@Param注解自定义keyName;

如果传入的参数类型为array时,collection的默认属性值为array,同样可以使用@Param注解自定义keyName;

如果传入的参数类型为Map时,collection的属性值可为三种情况:

1.遍历map.keys;
2.遍历map.values;
3.遍历map.entrySet()

批量Insert,参数为List<Object>

mysql的批量新增sql的写法示例,先看一下mapper的写法;


   void batchSaveUser(List<SysUser> userList);

接下来看sql如何写:


  <insert id="batchSaveUser">
      insert into sys_user (ding_user_id, username, nickname, password, email,
      mobile, avatar, creator_id, create_time, updator_id, update_time, is_delete)
      values
      <foreach collection="list" item="user" separator=",">
          (
          #{user.dingUserId}, #{user.username}, #{user.nickname}, #{user.password}, #{user.email},
          #{user.mobile}, #{user.avatar}, #{user.creatorId}, now(), #{user.updatorId}, now(), 0
          )
      </foreach>
  </insert>

批量Insert,参数为Map<Long, List<Long>>


void batchSaveGroupAndUser(@Param("map") Map<Long, List<Long>> groupUserMap);

接下来看sql如何写:


<insert id="batchSaveGroupAndUser" parameterType="java.util.Map">
       insert into sys_group_member (group_id, user_id, creator_id, create_time)
       values
       <foreach collection="map.keys" item="groupId" separator=",">
           <foreach collection="map[groupId]" item="userId" separator=",">
               (
               #{groupId}, #{userId}, 'admin', now()
               )
           </foreach>
       </foreach>
   </insert>

批量Insert,参数为Map<String, String>


void batchInsert(@Param("map") Map<String, String> map);

<insert id="batchInsert" parameterType="java.util.Map">
       insert into brand_info (code, `name`, is_delete, create_time)
       values
       <foreach collection="map.entrySet()" index="key" item="value" open="(" close=")" separator=",">
           #{key}, #{value}, 0, now()
       </foreach>
   </insert>

如果是只需要遍历key,写法则是collection=“map.keys”


<insert id="batchSave" parameterType="java.util.Map">
       insert into brand_info (code, is_delete, create_time)
       values
       <foreach collection="map.keys" item="key" open="(" close=")" separator=",">
           #{key}, 0, now()
       </foreach>
   </insert>

同理,如果是只需要遍历value,写法则是collection=“map.values”


<insert id="batchSave" parameterType="java.util.Map">
       insert into brand_info (code, is_delete, create_time)
       values
       <foreach collection="map.values" item="value" open="(" close=")" separator=",">
           #{value}, 0, now()
       </foreach>
   </insert>

批量Update,参数为List<Object>

**注意:**在执行批量Update的时候,数据库的url配置需要添加一项参数:&allowMultiQueries=true

如果没有这个配置参数的话,执行下面的更新语句会报错:

Mybatis批量操作sql写法示例(批量新增、更新)

正确的sql写法如下:


<update id="batchUpdateCorporation" parameterType="java.util.List">
       <foreach collection="list" item="item" index="index" separator=";">
           update sys_corporation set
           <if test="item.name != null and item.name !=''">
               `name` = #{item.name},
           </if>
           <if test="item.code != null and item.code !=''">
               code = #{item.code},
           </if>
           <if test="item.parentCode != null and item.parentCode !=''">
               parent_code = #{item.parentCode},
           </if>
           updater = 'system',
           update_time = now()
           where id = #{item.id}
       </foreach>
   </update>

来源:https://www.leafage.top/posts/detail/20815YW6T

标签:mybatis,批量,sql
0
投稿

猜你喜欢

  • Android集成微信登录的步骤详解

    2023-01-12 15:12:45
  • 老生常谈设计模式之动态代理

    2021-06-12 06:15:50
  • JavaWeb实现简单文件上传功能

    2022-11-19 04:15:41
  • Spring之动态注册bean的实现方法

    2023-09-26 14:01:17
  • Java设计模式之抽象工厂模式实例详解

    2023-11-29 04:04:57
  • 常用Hash算法(C语言的简单实现)

    2021-09-10 05:23:47
  • 详解Java读取Jar中资源文件及示例代码

    2021-07-12 11:18:52
  • jmeter+ant+jenkins自动化测试环境配置搭建过程

    2023-11-17 23:38:06
  • Spring的@Validation和javax包下的@Valid区别以及自定义校验注解

    2021-06-20 04:06:35
  • C#条件语句、循环语句(if、while)

    2023-09-27 19:49:23
  • MyBatis查询数据,赋值给List集合时,数据缺少的问题及解决

    2021-07-05 23:25:00
  • 一键设置java 环境变量 cmd下查看、修改(覆盖与添加)等说明

    2023-03-29 07:09:25
  • WinForm生成验证码图片的方法

    2022-05-11 17:49:33
  • Android使用Intent隐式实现页面跳转

    2022-09-17 05:33:48
  • 详解MyBatis配置typeAliases的方法

    2023-11-29 06:21:52
  • 关于ConditionalOnMissingBean失效问题的追踪

    2021-08-19 17:42:04
  • SpringBoot集成Beetl后统一处理页面异常的方法

    2023-11-10 19:57:55
  • Android开发中的9个常见错误和解决方法

    2023-08-26 16:12:35
  • Spring Boot和Hazelcast使用详解

    2021-06-08 11:28:02
  • java仿windows记事本小程序

    2023-11-25 09:24:43
  • asp之家 软件编程 m.aspxhome.com