MaBatis:动态SQL使用foreach进行批量插入

简介: MaBatis:动态SQL使用foreach进行批量插入

介绍

 - collection:必填,值为要迭代循环的属性名。这个属性值的情况有很多

 - item :变量名,值为从迭代对象中取出来的每一个值

 - index: 索引的属性名,在集合数组情况下值为当前索引值,当迭代循环的对象时Map类型时,这个值为map的key值

 - open: 整个循环内容开头的字符串

 - close:整个循环内容结尾的字符串

 - separator: 每次循环的分隔符

 

XML

 

<insert id="insertCustomersBatch" parameterType="java.util.List">
        insert into STOREROOM_REPERTORY(UUID, CUSTOMERSNAME, CUSTOMERSNO, COMMUNITY, REPERTORY_CODE, REPERTORY_AREA, COLOUR, CREATE_DATE, LOT, STATUS, OPERATOR_DATE)
        <foreach collection="list" item="item" index="index" separator="union all">
            (
            SELECT
            #{item.uuid},
            #{item.customersname},
            #{item.customersno},
            #{item.community},
            #{item.repertoryCode},
            #{item.repertoryArea},
            #{item.colour},
            #{item.createDate},
            #{item.lot},
            #{item.status},
            #{item.operatorDate}
            FROM DUAL
            )
        </foreach>
    </insert>

Dao 数据层

 

void insertCustomersBatch(@Param("list") List<StoreroomRepertory> list);

service业务层

 

@Transactional(readOnly = false)
    @Override
    public void insertCustomersBatch(List<StoreroomRepertory> list) {
        StoreroomRepertory storeroomRepertory = new StoreroomRepertory();
        try {
            int batchCount = 50;//每批commit的个数
            int batchLastIndex = batchCount - 1;//每批最后一个的下标
            for(int index = 0; index < list.size()-0;){
                if(batchLastIndex > list.size()-1){
                    batchLastIndex = list.size();
                    storeroomRepertoryDao.insertCustomersBatch(list.subList(index, batchLastIndex));
                    System.out.println("index:"+index+"     batchLastIndex:"+batchLastIndex);
                    storeroomRepertory.setOperatorDate(new Date());
                    break;//数据插入完成,退出循环
                }else{
                    storeroomRepertoryDao.insertCustomersBatch(list.subList(index, batchLastIndex));
                    System.out.println("index:"+index+"     batchLastIndex:"+batchLastIndex);
                    index = batchLastIndex;//设置下一批下标
                    batchLastIndex = index + (batchCount - 1);
                    if(index==list.size()-1){
                        storeroomRepertoryDao.insertCustomersBatch(list.subList(index, index+1));
                    }
                }
            }
        }catch(Exception e){
            //事务回滚
            TransactionAspectSupport.currentTransactionStatus().setRollbackOnly();
            // 设置回滚点
            Object savePoint = TransactionAspectSupport.currentTransactionStatus().createSavepoint();
            // 回滚到 savePoint
            TransactionAspectSupport.currentTransactionStatus().rollbackToSavepoint(savePoint);
            log.error("批量异常捕获",e);
            e.printStackTrace();
        }
    }
controller控制层
    @RequestMapping(value = "insertCustomersBatch",method = RequestMethod.POST)
    @ApiOperation(value = "批量订单入库")
    public PmpResult insertCustomersBatch(@RequestBody List<StoreroomRepertory> list){
        try {
            storeroomRepertoryService.insertCustomersBatch(list);
            logger.info("批量入库成功");
            return PmpResult.success(list);
        } catch (Exception e) {
            logger.error(e.getMessage(), e);
            String errorMessage = "异常的入库添加";
            if (isDev) {
                errorMessage = e.getMessage();
            }
            return PmpResult.paramError(errorMessage);
        }
    }
目录
相关文章
|
2月前
|
SQL XML Java
mybatis复习03,动态SQL,if,choose,where,set,trim标签及foreach标签的用法
文章介绍了MyBatis中动态SQL的用法,包括if、choose、where、set和trim标签,以及foreach标签的详细使用。通过实际代码示例,展示了如何根据条件动态构建查询、更新和批量插入操作的SQL语句。
mybatis复习03,动态SQL,if,choose,where,set,trim标签及foreach标签的用法
|
4月前
|
SQL Java 数据库连接
mybatis动态SQL常用语法总结
MyBatis 使用 OGNL 表达式语言处理动态SQL,如 `if` 标签进行条件判断,`choose`、`when`、`otherwise` 实现多条件选择,`where`、`set` 管理SQL关键字,`trim` 提供通用修剪功能,`foreach` 遍历集合数据。`sql` 和 `include` 用于代码重用,`selectKey` 处理插入后的返回值。参数传递支持匿名、具名、列表、Map、Java Bean和JSON方式。注意SQL转义及使用合适的jdbcType映射Java类型。
86 7
|
5月前
|
SQL XML 数据库
后端数据库开发高级之通过在xml文件中映射实现动态SQL
后端数据库开发高级之通过在xml文件中映射实现动态SQL
51 3
|
5月前
|
SQL XML Java
MyBatis第四课动态SQL
MyBatis第四课动态SQL
|
5月前
|
SQL 缓存 Java
Java框架之MyBatis 07-动态SQL-缓存机制-逆向工程-分页插件
Java框架之MyBatis 07-动态SQL-缓存机制-逆向工程-分页插件
|
5月前
|
SQL Java 数据库连接
MyBatis动态SQL
MyBatis动态SQL
60 0
|
5月前
|
SQL Java 数据库连接
【MyBatis】MyBatis操作数据库(二):动态SQL、#{}与${}的区别
【MyBatis】MyBatis操作数据库(二):动态SQL、#{}与${}的区别
61 0
|
5月前
|
SQL Java 数据库连接
JavaWeb基础第三章(MyBatis的应用,基础操作与动态SQL)
JavaWeb基础第三章(MyBatis的应用,基础操作与动态SQL)
|
2月前
|
关系型数据库 MySQL 网络安全
5-10Can't connect to MySQL server on 'sh-cynosl-grp-fcs50xoa.sql.tencentcdb.com' (110)")
5-10Can't connect to MySQL server on 'sh-cynosl-grp-fcs50xoa.sql.tencentcdb.com' (110)")
|
4月前
|
SQL 存储 监控
SQL Server的并行实施如何优化?
【7月更文挑战第23天】SQL Server的并行实施如何优化?
109 13