传入的表格格式数据流(TDS)远程过程调用(RPC)协议流不正确。此 RPC 请求中提供了过多的参数。最多应为 2100。

Error updating database. Cause: com.microsoft.sqlserver.jdbc.SQLServerException: 传入的表格格式数据流(TDS)远程过程调用(RPC)协议流不正确。此 RPC 请求中提供了过多的参数。最多应为 2100。

这是因为集合数据量过大,需要对集合进行拆分操作,就是将大集合折分成几个小集合,再进行分批操作,如:[1,2,3,4,5,6,7] 按三个一组拆分成 [[1,2,3]、[4,5,6]、[7]]

java 复制代码
    // 批量增加受理样品
    @Override
    public void addBatch(List<ApplySample> applySampleList) {
        // 如果样品过多,SQL语句的参数大于2100,会报错【此 RPC 请求中提供了过多的参数。最多应为 2100】
        // applySampleMapper.insertBatch(applySampleList);
        /*
        这是插入一条样品信息的SQL语句,用到参数29个,2100 / 29 = 72.4,所以单次最多插入72条样品信息,最好插入50条样品信息
        <!--批量增加受理样品-->
        <insert id="insertBatch">
        <foreach collection="list" item="item">
            if not exists(select as_ID from ApplySampleInfoC where as_OuterApplyId = #{item.outerApplyId} and as_ApplyID = #{item.applyId} and as_SampleNo = #{item.sampleNo})
            insert into ApplySampleInfoC(
            as_OuterApplyID, as_ApplyID, as_SampleNo,
            as_SampleName, as_SampleType, as_YCDD, as_SCDW,
            as_SCDWDZ, as_BatchNo, as_TradeMark, as_Packing,
            as_Property, as_Specs, as_CheckCondition, as_Amount, as_Unit,
            as_Gerder, as_Age, as_SJRQ, as_Vocation,
            as_nationality, as_Ethnics, as_Marriage, as_Education,
            as_IdentityCard, as_Telephone, as_Address,
            as_IdentityAddress, as_TakeMedicineSolutions)
            values(#{item.outerApplyId}, #{item.applyId}, #{item.sampleNo},
            #{item.sampleName}, #{item.sampleType}, #{item.location}, #{item.scdwName},
            #{item.scdwAddress}, #{item.batchNo}, #{item.trademark}, #{item.packing},
            #{item.property}, #{item.specs}, #{item.condition}, #{item.amount}, #{item.unit},
            #{item.gender}, #{item.age}, #{item.peopleGroup}, #{item.vocation},
            #{item.nationality}, #{item.ethnics}, #{item.marriage}, #{item.education},
            #{item.identityNumber}, #{item.telephone}, #{item.residenceAddress},
            #{item.identityAddress}, #{item.previousMedicalHistory})
        </foreach>
        </insert>
         */
        // 批处理,拆分数据,满50条,执行批量插入
        if (applySampleList != null && applySampleList.size() > 50) {
            List<ApplySample> applySampleNewList = new ArrayList<>();
            // 遍历提取数据
            for (int i = 0; i < applySampleList.size(); i++) {
                applySampleNewList.add(applySampleList.get(i));
                // 满50条数据,提交一次
                if ((i + 1) % 50 == 0) {
                    applySampleMapper.insertBatch(applySampleNewList);
                    applySampleNewList.clear();
                }
            }
            // 最后一次提交
            if (!applySampleNewList.isEmpty()) {
                applySampleMapper.insertBatch(applySampleNewList);
                applySampleNewList.clear();
            }
        } else{ // 不够50条数据,不需要分批,直接插入
            // 列表有数据才进行插入,否则不执行任何操作。这样写代码才健壮
            if (applySampleList != null && !applySampleList.isEmpty()) {
                applySampleMapper.insertBatch(applySampleList);
            }
        }
    }

对上面代码进行优化:

java 复制代码
    // 批量增加受理样品
    @Override
    public void addBatch(List<ApplySample> applySampleList) {
        // 如果样品过多,SQL语句的参数大于2100,会报错【此 RPC 请求中提供了过多的参数。最多应为 2100】
        // applySampleMapper.insertBatch(applySampleList);
        /*
        这是插入一条样品信息的SQL语句,用到参数29个,2100 / 29 = 72.4,所以单次最多插入72条样品信息,最好插入50条样品信息
        <!--批量增加受理样品-->
        <insert id="insertBatch">
        <foreach collection="list" item="item">
            if not exists(select as_ID from ApplySampleInfoC where as_OuterApplyId = #{item.outerApplyId} and as_ApplyID = #{item.applyId} and as_SampleNo = #{item.sampleNo})
            insert into ApplySampleInfoC(
            as_OuterApplyID, as_ApplyID, as_SampleNo,
            as_SampleName, as_SampleType, as_YCDD, as_SCDW,
            as_SCDWDZ, as_BatchNo, as_TradeMark, as_Packing,
            as_Property, as_Specs, as_CheckCondition, as_Amount, as_Unit,
            as_Gerder, as_Age, as_SJRQ, as_Vocation,
            as_nationality, as_Ethnics, as_Marriage, as_Education,
            as_IdentityCard, as_Telephone, as_Address,
            as_IdentityAddress, as_TakeMedicineSolutions)
            values(#{item.outerApplyId}, #{item.applyId}, #{item.sampleNo},
            #{item.sampleName}, #{item.sampleType}, #{item.location}, #{item.scdwName},
            #{item.scdwAddress}, #{item.batchNo}, #{item.trademark}, #{item.packing},
            #{item.property}, #{item.specs}, #{item.condition}, #{item.amount}, #{item.unit},
            #{item.gender}, #{item.age}, #{item.peopleGroup}, #{item.vocation},
            #{item.nationality}, #{item.ethnics}, #{item.marriage}, #{item.education},
            #{item.identityNumber}, #{item.telephone}, #{item.residenceAddress},
            #{item.identityAddress}, #{item.previousMedicalHistory})
        </foreach>
        </insert>
         */
        // 集合不为空
        if (!applySampleList.isEmpty()) {
            // 批处理,拆分数据,满50条,执行批量插入
            List<List<ApplySample>> lists = splitList(applySampleList, 50);
            for (List<ApplySample> list: lists) {
                applySampleMapper.insertBatch(list);
            }
        }

        
        // 集合分割,将一个大集合分割成多个小集合,数据示例:[1,2,3,4,5,6,7] 按3个元素一组分割成 [[1,2,3],[4,5,6],[7]]
        public List<List<ApplySample>> splitList(List<ApplySample> list, int chunkSize) {
            List<List<ApplySample>> result = new ArrayList<>();

            for (int i = 0; i < list.size(); i += chunkSize) {
                int end = Math.min(i + chunkSize, list.size());
                result.add(list.subList(i, end));
            }

            return result;
        }
    }

对上面代码再一步优化:

1、提取集合拆分的逻辑,做成集合拆分通用工具

java 复制代码
package com.weiyu.utils;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

public class PublicUtils {
    /**
     * 集合分割,将一个大集合分割成多个小集合,数据示例:[1,2,3,4,5,6,7] 按3个元素一组分割成 [[1,2,3],[4,5,6],[7]]
     * @param list 集合
     * @param chunkSize 分割大小
     * @return 返回分割集合
     */
    public static <E> Collection<List<E>> splitList(List<E> list, int chunkSize) {
        List<List<E>> result = new ArrayList<>();

        for (int i = 0; i < list.size(); i += chunkSize) {
            int end = Math.min(i + chunkSize, list.size());
            result.add(list.subList(i, end));
        }

        return result;
    }
}

2、使用集合拆分通用工具

java 复制代码
    // 批量增加受理样品
    @Override
    public void addBatch(List<ApplySample> applySampleList) {
        // 如果样品过多,SQL语句的参数大于2100,会报错【此 RPC 请求中提供了过多的参数。最多应为 2100】
        // applySampleMapper.insertBatch(applySampleList);
        /*
        这是插入一条样品信息的SQL语句,用到参数29个,2100 / 29 = 72.4,所以单次最多插入72条样品信息,最好插入50条样品信息
        <!--批量增加受理样品-->
        <insert id="insertBatch">
        <foreach collection="list" item="item">
            if not exists(select as_ID from ApplySampleInfoC where as_OuterApplyId = #{item.outerApplyId} and as_ApplyID = #{item.applyId} and as_SampleNo = #{item.sampleNo})
            insert into ApplySampleInfoC(
            as_OuterApplyID, as_ApplyID, as_SampleNo,
            as_SampleName, as_SampleType, as_YCDD, as_SCDW,
            as_SCDWDZ, as_BatchNo, as_TradeMark, as_Packing,
            as_Property, as_Specs, as_CheckCondition, as_Amount, as_Unit,
            as_Gerder, as_Age, as_SJRQ, as_Vocation,
            as_nationality, as_Ethnics, as_Marriage, as_Education,
            as_IdentityCard, as_Telephone, as_Address,
            as_IdentityAddress, as_TakeMedicineSolutions)
            values(#{item.outerApplyId}, #{item.applyId}, #{item.sampleNo},
            #{item.sampleName}, #{item.sampleType}, #{item.location}, #{item.scdwName},
            #{item.scdwAddress}, #{item.batchNo}, #{item.trademark}, #{item.packing},
            #{item.property}, #{item.specs}, #{item.condition}, #{item.amount}, #{item.unit},
            #{item.gender}, #{item.age}, #{item.peopleGroup}, #{item.vocation},
            #{item.nationality}, #{item.ethnics}, #{item.marriage}, #{item.education},
            #{item.identityNumber}, #{item.telephone}, #{item.residenceAddress},
            #{item.identityAddress}, #{item.previousMedicalHistory})
        </foreach>
        </insert>
         */
        // 集合不为空
        if (!applySampleList.isEmpty()) {
            // 批处理,拆分数据,满50条,执行批量插入
            List<List<ApplySample>> lists = (List<List<ApplySample>>)PublicUtils.splitList(applySampleList, 50);
            for (List<ApplySample> list: lists) {
                applySampleMapper.insertBatch(list);
            }
        }
    }
相关推荐
XUE-521131413 小时前
路由策略与路由控制实验
运维·网络·网络协议·智能路由器
加油201913 小时前
如何快速学习一个网络协议?
网络·网络协议·学习·方法论
爱奥尼欧17 小时前
【Linux】网络部分——Socket编程 UDP实现网络云服务器与本地虚拟机的基本通信
linux·服务器·网络
十碗饭吃不饱17 小时前
WebClient工具调用HTTP接口报错远程主机断开连接
网络·网络协议·http
liu****17 小时前
基于websocket的多用户网页五子棋(九)
服务器·网络·数据库·c++·websocket·网络协议·个人开发
心态特好17 小时前
详解WebSocket及其妙用
java·python·websocket·网络协议
jieyu111918 小时前
虚拟专用网络
linux·网络
white-persist1 天前
MCP协议深度解析:AI时代的通用连接器
网络·人工智能·windows·爬虫·python·自动化
running thunderbolt1 天前
项目---网络通信组件JsonRpc
linux·服务器·c语言·开发语言·网络·c++·性能优化
YoungLime1 天前
DVWA靶场之十:DOM 型 XSS(DOM Based Cross Site Scripting (XSS))
网络·安全·web安全