Mybatis批量操作sql写法
foreach时,collection属性值的三种情况:
批量Insert,参数为List
foreach时,collection属性值的三种情况:如果传入的参数类型为List时,collection的默认属性值为list,同样可以使用@Param注解自定义keyName;
如果传入的参数类型为array时,collection的默认属性值为array,同样可以使用@Param注解自定义keyName;
如果传入的参数类型为Map时,collection的属性值可为三种情况:遍历map.keys;
遍历map.values;
遍历map.entrySet()
批量Insert,参数为List
mysql的批量新增sql的写法示例,先看一下mapper的写法;void batchSaveUser(List userList);
接下来看sql如何写;
insert into sys_user (ding_user_id, username, nickname, password, email,
mobile, avatar, creator_id, create_time, updator_id, update_time, is_delete)
values
(
#{user.dingUserId}, #{user.username}, #{user.nickname}, #{user.password}, #{user.email},
#{user.mobile}, #{user.avatar}, #{user.creatorId}, now(), #{user.updatorId}, now(), 0
)
批量Insert,参数为Map>void batchSaveGroupAndUser(@Param("map") Map> groupUserMap);
insert into sys_group_member (group_id, user_id, creator_id, create_time)
values
#{groupId}, #{userId}, 'admin', now()
批量Insert,参数为Mapvoid batchInsert(@Param("map") Map map);
insert into brand_info (code, `name`, is_delete, create_time)
values
#{key}, #{value}, 0, now()
如果是只需要遍历key,写法则是collection=“map.keys”
insert into brand_info (code, is_delete, create_time)
values
#{key}, 0, now()
同理,如果是只需要遍历value,写法则是collection=“map.values”
insert into brand_info (code, is_delete, create_time)
values
#{value}, 0, now()
批量Update,参数为List
注意: 在执行批量Update的时候,数据库的url配置需要添加一项参数:&allowMultiQueries=true
如果没有这个配置参数的话,执行下面的更新语句会报错:
update sys_corporation set
`name` = #{item.name},
code = #{item.code},
parent_code = #{item.parentCode},
updater = 'system',
update_time = now()
where id = #{item.id}