概述
foreach属性
参考:https://blog.csdn.net/jason5186/article/details/40896043
属性 | 描述 |
---|---|
item | 循环体中的具体对象。支持属性的点路径访问,如item.age,item.info.details。 具体说明:在list和数组中是其中的对象,在map中是value。 该参数为必选。 |
collection | 要做foreach的对象,作为入参时,List<?>对象默认用list代替作为键,数组对象有array代替作为键,Map对象用map代替作为键。 当然在作为入参时可以使用@Param("keyName")来设置键,设置keyName后,list,array,map将会失效。 除了入参这种情况外,还有一种作为参数对象的某个字段的时候。举个例子: 如果User有属性List ids。入参是User对象,那么这个collection = "ids" 如果User有属性Ids ids;其中Ids是个对象,Ids有个属性List id;入参是User对象,那么collection = "ids.id" 上面只是举例,具体collection等于什么,就看你想对那个元素做循环。 该参数为必选。 |
separator | 元素之间的分隔符,例如在in()的时候,separator=","会自动在元素中间用“,“隔开,避免手动输入逗号导致sql错误,如in(1,2,)这样。该参数可选。 |
open | foreach代码的开始符号,一般是(和close=")"合用。常用在in(),values()时。该参数可选。 |
close | foreach代码的关闭符号,一般是)和open="("合用。常用在in(),values()时。该参数可选。 |
index | 在list和数组中,index是元素的序号,在map中,index是元素的key,该参数可选。 |
批量插入
数组传参:
int insertUserRole(@Param("userId") Integer userId,@Param("roleIds") Integer[] roleIds);
<insert id="insertUserRole" >
insert into user_role (userId, roleId
)
values
<foreach item="item" index="index" collection="roleIds"
open="(" separator="),(" close=")">
#{userId}, #{item}
</foreach>
</insert>
集合传参:
void batchInsertWorks(@Param("empNo") String empNo, List<Works> worksList);
<insert id="batchInsertWorks" parameterType="java.util.List">
delete from mf_works_schedule where emp_no = #{empNo};
insert into mj_works(id_, emp_no, rest_day, rest_date, update_time)
values
<foreach collection ="worksList" item="item" index= "index" separator =",">
(
#{item.id}, #{item.empNo}, #{item.restDay},#{item.restDate}, now()
)
</foreach >
ON DUPLICATE KEY UPDATE update_time=now();
</insert>
-
这里我传递的参数是List,所有parameterType为java.util.List
-
在<insert>或其他mybatis的标签中,可以写多个SQL语句,数据库会依次执行,记得一个语句结束后用分号结尾
-
foreach中collection的内容(worksList),就是传递的参数的名字
-
separator表示用两个对象之间用逗号相隔,即:insert into xxx(column1,column2,column3) values(...), (...), (...)
-
item就有点像:for(Works item : worksList) { ... }
-
index在List和数组中,表示元素的序号,在map中,index表示元素的key
IN查询、删除
List<Order> queryByAppointmentDate(@Param("dateArray") String[] dateArray);
<select id="queryByAppointmentDate" resultMap="xxx.xxx.xxx.Order">
select * from mj_order where appointment_date in
<foreach collection="dateArray" item="item" index="index"
open="(" separator="," close=")">
(
#{item}
)
</foreach>
</select>
这里的foreach参数和批量插入类似,多了个open和close,分表表示该语句从什么时候开始,什么时候结束
删除也类似:
void deleteEmpRestInfo(@Param("idArray") String[] idArray);
<delete id="deleteEmpRestInfo">
delete from mj_works where id_ in
<foreach collection="idArray" item="item" index="index"
open="(" separator="," close=")">
(
#{item}
)
</foreach>
</delete>
批量更新参数传入的是map写法
@Test
public
void deleteByUpdates(){
Map<String,Object> map =new HashMap<>();
List list=new ArrayList();
list.add(1);
list.add(2);
map.put("status",2);
map.put("list",list);
int a= terminalPrivilegesMapper.updateStatus(map);
System.out.println(a);
<!--批量更新状态-->
<update id="updateStatus" parameterType="java.util.Map">
UPDATE INFO_TERMINALPRIVILEGES SET STATUS = #{status}
WHERE ID IN
<foreach item="item" collection="list" separator="," open="(" close=")">
#{item,jdbcType=DECIMAL}
</foreach>
</update>
批量更新传入参数为list写法
<!-- 批量逻辑删除信息 -->
<update id="logicDeletes" parameterType="list">
UPDATE INFO_TERMINALTYPE SET DELETED = 1 WHERE ID IN
<foreach item="item" collection="list" separator="," open="(" close=")">
#{item,jdbcType=DECIMAL}
</foreach>
</update>
最后
以上就是儒雅饼干为你收集整理的Mybatis foreach 批量操作批量插入IN查询、删除的全部内容,希望文章能够帮你解决Mybatis foreach 批量操作批量插入IN查询、删除所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复