JAVA批量操作报错

template might not exist or might not be accessible by any of the configured Template Resolvers

这是我的代码

<update id="deleteDevice">
		delete from  p_human
		where id in(
		<foreach collection="idList" item="id" separator=",">
			#{id}
		</foreach>
		)
	</update>

当我进行少量删除的时候并没有问题,但是删除一千多条数据的时候,它它它竟然报错了,我便开始搜搜搜(因为我并不想在业务层循环)

然后找到了各种介绍,有引用pom的,此处省略,最终我用了这种方法

 public void deleteDevice(String idS,String userId) {
        //这里我转了一下数组
        Long [] id= Convert.toLongArray(idS);
        //能力有限,我又转了一下
        List<Long> idList = Arrays.asList(id);

        if(idList != null && idList.size()>0){

            Integer count =idList.size();
            Integer queryNumOne = count / 100;//循环次数,一次100条
            if (count % 100 != 0) {//有余数循环次数+1
                queryNumOne++;
            }
            Integer num = 0;
            for (int index = 0; index < queryNumOne; index++) {
                Integer num1 = 100;
                if(queryNumOne==index+1){
                    num1=count % 100;
                }
                List<Long> param = idList.subList(num, num + num1);
                num = num + 100;
                //开始搞起来
                mainImMapper.deleteDevice(param,userId);
            }

        }

        
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值