时间:2021-05-19
第一种,直接传递给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批量删除的实现操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在项目的开发中,我们经常需要对数据进行批量的操作,如:批量新增、批量删除等。下面将介绍MyBatis如何实现数据的批量新增和删除操作。创建UserMapper接
在操作数据库时,经常会碰到批量插入、批量删除的情况,直接执行SQL语句还好做一点,当使用Mybatis进行批量插入、批量删除时会有一些问题。下面对使用Mybat
MyBatis的作用我想不用多说,今天说说MyBatis中的批量删除操作。废话不多说,先给大家一段代码片段!deletefromt_standard_catal
很多人在用MyBatis或者通用Mapper时,经常会问有没有批量插入和批量更新的方法。实际上许多时候没必要用去实现特别复杂的批量操作。直接通过MyBatis的
很多人在用MyBatis或者通用Mapper时,经常会问有没有批量插入和批量更新的方法。实际上许多时候没必要用去实现特别复杂的批量操作。直接通过MyBatis的