真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

mybatisplus批量插入修改的方法是什么

本篇內(nèi)容介紹了“mybatisplus批量插入修改的方法是什么”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

創(chuàng)新互聯(lián)建站專注于渾江網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供渾江營銷型網(wǎng)站建設(shè),渾江網(wǎng)站制作、渾江網(wǎng)頁設(shè)計(jì)、渾江網(wǎng)站官網(wǎng)定制、小程序制作服務(wù),打造渾江網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供渾江網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

IService 的實(shí)現(xiàn)類 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));
    }

會發(fā)現(xiàn),其實(shí)是在循環(huán)插入, 那么如果這樣我們有兩種選擇
1 使用mybatis 的xml文件,自己拼接插入,修改語句,就像最原始的那樣,通過2 重新配置全局的批量修改,增加方法

第一種不再贅述,現(xiàn)在說明第二種用法

一共需要五步;

第一步: 一般引入mybaits-plus 都會有相應(yīng)的配置類, MybatisPlusConfig 名字無所謂,作用是一樣的,一般都會用自帶的分頁插件,可以在此基礎(chǔ)上,繼續(xù)添加,給出我的配置

// 分頁差距
@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();
    }
 
}

第二步,創(chuàng)建自定義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;
    }
}

第三步: 創(chuàng)建一個類似于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參數(shù)名必須是 list/collection/array 3個的其中之一
     */
    int insertBatch(@Param("list") List list);
 
    /**
     * 自定義批量更新,條件為主鍵
     * 如果要自動填充,@Param(xx) xx參數(shù)名必須是 list/collection/array 3個的其中之一
     */
    int updateBatch(@Param("list") List list);
 
}

第四步: 分別創(chuàng)建上述兩個方法的具體實(shí)現(xiàn)類

@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);
        // 第三個參數(shù)必須和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();
    }
}
 
 
=============================================================================
/**
 * 批量更新方法實(shí)現(xiàn),條件為主鍵,選擇性更新
 */
@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);
        // 第三個參數(shù)必須和RootMapper的自定義方法名一致
        return this.addUpdateMappedStatement(mapperClass, modelClass, "updateBatch", sqlSource);
    }
 
}

第五步: 使用,將原有的繼承BaseMapper的方法,改寫為繼承RootMapper ,后續(xù)批量操作,直接使用新增的兩個方法進(jìn)行處理即可

“mybatisplus批量插入修改的方法是什么”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


新聞標(biāo)題:mybatisplus批量插入修改的方法是什么
網(wǎng)頁網(wǎng)址:http://weahome.cn/article/pggdei.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部