• 2022-05-05 mybatis-plus 批量插入修改操作


    mybaits-plus 的学习成本相对较低,当学会了mybatis之后,mybaits-plus 很有友好的对mybaits仅仅是增强,没有任何改变,学习难度较低;
    其中有个小小的问题,即 IService中自带的 saveBatch 和 saveOrUpdateBatch 等方法,仔细看会发现,他们的批量执行,竟然不是 真正的批量执行!!!
    IService 的实现类 ServiceImpl 中截取一段代码

    /**
         * 批量插入
         *
         * @param entityList ignore
         * @param batchSize  ignore
         * @return ignore
         */
        @Transactional(rollbackFor = Exception.class)
        @Override
        public boolean saveBatch(Collection entityList, int batchSize) {
            String sqlStatement = getSqlStatement(SqlMethod.INSERT_ONE);
            return executeBatch(entityList, batchSize, (sqlSession, entity) -> sqlSession.insert(sqlStatement, entity));
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    会发现,其实是在循环插入, 那么如果这样我们有两种选择
    1 使用mybatis 的xml文件,自己拼接插入,修改语句,就像最原始的那样,通过 2 重新配置全局的批量修改,增加方法

    第一种不再赘述,现在说明第二种用法

    一共需要五步;

    第一步: 一般引入mybaits-plus 都会有相应的配置类, MybatisPlusConfig 名字无所谓,作用是一样的,一般都会用自带的分页插件,可以在此基础上,继续添加,给出我的配置

    // 分页差距
    @Configuration
    public class MybatisPlusConfig {
        @Bean
        @ConditionalOnMissingBean
        public MybatisPlusInterceptor mybatisPlusInterceptor() {
            MybatisPlusInterceptor paginationInterceptor = new MybatisPlusInterceptor();
            PaginationInnerInterceptor paginationInnerInterceptor= new PaginationInnerInterceptor(DbType.MYSQL);
            paginationInterceptor.addInnerInterceptor(paginationInnerInterceptor);
            return paginationInterceptor;
        }
    
    
        /**
         * 自动填充功能
         * @return
         */
        @Bean
        @ConditionalOnMissingBean
        public GlobalConfig globalConfig() {
            GlobalConfig globalConfig = new GlobalConfig();
    //        globalConfig.setMetaObjectHandler(new MybatisMetaObjectHandler());
            return globalConfig;
        }
    
    // 自定义sql注入器
        @Bean
        public CustomizedSqlInjector customizedSqlInjector() {
            return new CustomizedSqlInjector();
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32

    第二步,创建自定义sql注入器

    /**
     * 自定义方法SQL注入器
     */
    public class CustomizedSqlInjector extends DefaultSqlInjector {
        /**
         * 如果只需增加方法,保留mybatis plus自带方法,
         * 可以先获取super.getMethodList(),再添加add
         */
        @Override
        public List getMethodList(Class mapperClass) {
            List methodList = super.getMethodList(mapperClass);
            methodList.add(new InsertBatchMethod());
            methodList.add(new UpdateBatchMethod());
            return methodList;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    第三步: 创建一个类似于mybaits-plus 中的 BaseMapper的一个接口,我这里叫做RootMapper ,然后继承BaseMapper ,并新增两个批量操作方法, insertBatch updateBatch

    /**
     * @Description 使用的时候,只需要继承RootMapper即可
     * @Author FL
     * @Date 13:43 2022/5/5
     * @Param
     **/
    public interface RootMapper extends BaseMapper {
    
        /**
         * 自定义批量插入
         * 如果要自动填充,@Param(xx) xx参数名必须是 list/collection/array 3个的其中之一
         */
        int insertBatch(@Param("list") List list);
    
        /**
         * 自定义批量更新,条件为主键
         * 如果要自动填充,@Param(xx) xx参数名必须是 list/collection/array 3个的其中之一
         */
        int updateBatch(@Param("list") List list);
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    第四步: 分别创建上述两个方法的具体实现类

    @Slf4j
    public class InsertBatchMethod extends AbstractMethod {
        /**
         * insert into user(id, name, age) values (1, "a", 17), (2, "b", 18);
         
         */
        @Override
        public MappedStatement injectMappedStatement(Class mapperClass, Class modelClass, TableInfo tableInfo) {
            final String sql = "";
            final String fieldSql = prepareFieldSql(tableInfo);
            final String valueSql = prepareValuesSql(tableInfo);
            final String sqlResult = String.format(sql, tableInfo.getTableName(), fieldSql, valueSql);
            log.debug("sqlResult----->{}", sqlResult);
            SqlSource sqlSource = languageDriver.createSqlSource(configuration, sqlResult, modelClass);
            // 第三个参数必须和RootMapper的自定义方法名一致
            return this.addInsertMappedStatement(mapperClass, modelClass, "insertBatch", sqlSource, new NoKeyGenerator(), null, null);
        }
    
        private String prepareFieldSql(TableInfo tableInfo) {
            StringBuilder fieldSql = new StringBuilder();
            fieldSql.append(tableInfo.getKeyColumn()).append(",");
            tableInfo.getFieldList().forEach(x -> {
                fieldSql.append(x.getColumn()).append(",");
            });
            fieldSql.delete(fieldSql.length() - 1, fieldSql.length());
            fieldSql.insert(0, "(");
            fieldSql.append(")");
            return fieldSql.toString();
        }
    
        private String prepareValuesSql(TableInfo tableInfo) {
            final StringBuilder valueSql = new StringBuilder();
            valueSql.append("");
            valueSql.append("#{item.").append(tableInfo.getKeyProperty()).append("},");
            tableInfo.getFieldList().forEach(x -> valueSql.append("#{item.").append(x.getProperty()).append("},"));
            valueSql.delete(valueSql.length() - 1, valueSql.length());
            valueSql.append("");
            return valueSql.toString();
        }
    }
    
    
    =============================================================================
    /**
     * 批量更新方法实现,条件为主键,选择性更新
     */
    @Slf4j
    public class UpdateBatchMethod extends AbstractMethod {
        /**
         * update user set name = "a", age = 17 where id = 1;
         * update user set name = "b", age = 18 where id = 2;
         
         */
        @Override
        public MappedStatement injectMappedStatement(Class mapperClass, Class modelClass, TableInfo tableInfo) {
            String sql = "";
            String additional = tableInfo.isWithVersion() ? tableInfo.getVersionFieldInfo().getVersionOli("item", "item.") : "" + tableInfo.getLogicDeleteSql(true, true);
            String setSql = sqlSet(tableInfo.isWithLogicDelete(), false, tableInfo, false, "item", "item.");
            String sqlResult = String.format(sql, tableInfo.getTableName(), setSql, tableInfo.getKeyColumn(), "item." + tableInfo.getKeyProperty(), additional);
            log.debug("sqlResult----->{}", sqlResult);
            SqlSource sqlSource = languageDriver.createSqlSource(configuration, sqlResult, modelClass);
            // 第三个参数必须和RootMapper的自定义方法名一致
            return this.addUpdateMappedStatement(mapperClass, modelClass, "updateBatch", sqlSource);
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88

    第五步: 使用,将原有的继承BaseMapper的方法,改写为继承RootMapper ,后续批量操作,直接使用新增的两个方法进行处理即可

  • 相关阅读:
    咬文嚼图式的介绍二叉树、B树/B-树
    三七皂苷-壳聚糖(PNS-CSB)水凝胶/聚乙烯吡咯烷酮/pH敏感性羧甲基/壳聚糖水凝胶的制备
    IDEA中maven无法下载依赖解决方案
    对Spring Bean的一些思考(对Bean的理解及命名问题)
    Linux系统编程系列之守护进程
    外包“混”了2年,我只认真做了5件事,如今顺利拿到字节 Offer...
    Win7批量执行Python文件
    YApi、Swagger
    Python python-docx 使用教程
    作为优秀的DBA,究竟需要掌握多少种数据库?
  • 原文地址:https://blog.csdn.net/m0_54861649/article/details/126011489