mybatis 根据id批量删除的实现操作
程序员文章站
2022-03-21 22:30:05
第一种,直接传递给mapper.xml 集合/数组形式 dele...
第一种,直接传递给mapper.xml 集合/数组形式
<delete id="deletebylogic" parametertype = "java.util.list"> delete from user where 1>2 or id in <foreach collection="list" item="item" open="(" separator="," close=")" > #{item} </foreach> </delete>
1.如果传入的是单参数且参数类型是一个list的时候,collection属性值为list
int deletebylogic(list list);
2.如果传入的是单参数且参数类型是一个array数组的时候, 参数类型为parametertype="int" 集合 collection的属性值为array
int deletebylogic(int[] array); <foreach item="item" collection="array" open="(" separator="," close=")"> #{item} </foreach>
第二种,直接在service中将数据给分装传递到mapper中
前端封装为以,为分隔符的id字符串。调用下方工具类。生成数据类型为(‘12',‘34'....)形式
/** * stringutil.getsqlinstrbystrarray()<br> * <p>author : wyp </p> * <p>date : 2016年6月15日下午6:14:05</p> * <p>desc : 数组字符串转换为sql in 字符串拼接 </p> * @param strarray 数组字符串 * @return sql in 字符串 */ public static string getsqlinstrbystrarray(string str) { stringbuffer temp = new stringbuffer(); if(stringutils.isempty(str)){ return "('')"; } temp.append("("); if(stringutils.isnotempty(str)){ string[] strarray=str.split(","); if (strarray != null && strarray.length > 0 ) { for (int i = 0; i < strarray.length; i++) { temp.append("'"); temp.append(strarray[i]); temp.append("'"); if (i != (strarray.length-1) ) { temp.append(","); } } } } temp.append(")"); return temp.tostring(); }
在mapper中直接使用 $ 符号接收即可
int deletebylogic(string ids); <delete id="deletebylogic" parametertype = "java.util.list"> delete from user where 1>2 or id in ${ids} </delete>
还有第三种。不过比较浪费资源
直接在service中循环调用mapper中的delete方法。.....
补充知识:mybatis中一次执行多条sql语句,例如一次性删除多条数据
1.首先在数据库连接url上加上allowmultiqueries=true,默认mysql是不支持一次执行多条sql语句的。
jdbc:mysql://127.0.0.1:3306/test?useunicode=true&characterencoding=utf-8&allowmultiqueries=true
2.在delete节点中添加多条语句:
<delete id="deletebyprimarykey" parametertype="java.lang.integer" > delete from music_favorite where id = #{id,jdbctype=integer}; delete from music_favorite_song where f_id = #{id,jdbctype=integer}; </delete>
这可以用在mybatis的级联关系删除上,删除主表记录前,先删除关联表的记录,两条一起执行。
以上这篇mybatis 根据id批量删除的实现操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
推荐阅读
-
python操作mongodb根据_id查询数据的实现方法
-
Mybatis批量插入返回插入成功后的主键id操作
-
MyBatis 实现批量插入和删除中双层循环的写法案例
-
JS实现根据指定值删除数组中的元素操作示例
-
mybatis 根据id批量删除的实现操作
-
Mybatis 如何批量删除数据的实现示例
-
MyBatis学习笔记-08.MyBatis动态Sql语句foreach的collection的用法以及用foreach实现批量删除与批量新增
-
MyBatis实现数据的批量新增和删除
-
实现Mybatis批量插入数据库,返回插入成功后的主键id
-
Spring+SpringMVC+Mybatis实现增删改查--(六)SSM删除、批量删除员工的实现