Search in sources :

Example 1 with SqlMethod

use of com.baomidou.mybatisplus.core.enums.SqlMethod in project solon by noear.

the class InsertBatchSomeColumn method injectMappedStatement.

@SuppressWarnings("Duplicates")
@Override
public MappedStatement injectMappedStatement(Class<?> mapperClass, Class<?> modelClass, TableInfo tableInfo) {
    KeyGenerator keyGenerator = NoKeyGenerator.INSTANCE;
    SqlMethod sqlMethod = SqlMethod.INSERT_ONE;
    List<TableFieldInfo> fieldList = tableInfo.getFieldList();
    String insertSqlColumn = tableInfo.getKeyInsertSqlColumn(true, false) + this.filterTableFieldInfo(fieldList, predicate, TableFieldInfo::getInsertSqlColumn, EMPTY);
    String columnScript = LEFT_BRACKET + insertSqlColumn.substring(0, insertSqlColumn.length() - 1) + RIGHT_BRACKET;
    String insertSqlProperty = tableInfo.getKeyInsertSqlProperty(true, ENTITY_DOT, false) + this.filterTableFieldInfo(fieldList, predicate, i -> i.getInsertSqlProperty(ENTITY_DOT), EMPTY);
    insertSqlProperty = LEFT_BRACKET + insertSqlProperty.substring(0, insertSqlProperty.length() - 1) + RIGHT_BRACKET;
    String valuesScript = SqlScriptUtils.convertForeach(insertSqlProperty, "list", null, ENTITY, COMMA);
    String keyProperty = null;
    String keyColumn = null;
    // 表包含主键处理逻辑,如果不包含主键当普通字段处理
    if (tableInfo.havePK()) {
        if (tableInfo.getIdType() == IdType.AUTO) {
            /* 自增主键 */
            keyGenerator = Jdbc3KeyGenerator.INSTANCE;
            keyProperty = tableInfo.getKeyProperty();
            keyColumn = tableInfo.getKeyColumn();
        } else {
            if (null != tableInfo.getKeySequence()) {
                keyGenerator = TableInfoHelper.genKeyGenerator(this.methodName, tableInfo, builderAssistant);
                keyProperty = tableInfo.getKeyProperty();
                keyColumn = tableInfo.getKeyColumn();
            }
        }
    }
    String sql = String.format(sqlMethod.getSql(), tableInfo.getTableName(), columnScript, valuesScript);
    SqlSource sqlSource = languageDriver.createSqlSource(configuration, sql, modelClass);
    return this.addInsertMappedStatement(mapperClass, modelClass, getMethod(sqlMethod), sqlSource, keyGenerator, keyProperty, keyColumn);
}
Also used : SqlScriptUtils(com.baomidou.mybatisplus.core.toolkit.sql.SqlScriptUtils) SqlMethod(com.baomidou.mybatisplus.core.enums.SqlMethod) Setter(lombok.Setter) Accessors(lombok.experimental.Accessors) Predicate(java.util.function.Predicate) NoKeyGenerator(org.apache.ibatis.executor.keygen.NoKeyGenerator) AbstractMethod(com.baomidou.mybatisplus.core.injector.AbstractMethod) Jdbc3KeyGenerator(org.apache.ibatis.executor.keygen.Jdbc3KeyGenerator) KeyGenerator(org.apache.ibatis.executor.keygen.KeyGenerator) TableInfoHelper(com.baomidou.mybatisplus.core.metadata.TableInfoHelper) IdType(com.baomidou.mybatisplus.annotation.IdType) List(java.util.List) TableInfo(com.baomidou.mybatisplus.core.metadata.TableInfo) MappedStatement(org.apache.ibatis.mapping.MappedStatement) SqlSource(org.apache.ibatis.mapping.SqlSource) TableFieldInfo(com.baomidou.mybatisplus.core.metadata.TableFieldInfo) TableFieldInfo(com.baomidou.mybatisplus.core.metadata.TableFieldInfo) SqlSource(org.apache.ibatis.mapping.SqlSource) NoKeyGenerator(org.apache.ibatis.executor.keygen.NoKeyGenerator) Jdbc3KeyGenerator(org.apache.ibatis.executor.keygen.Jdbc3KeyGenerator) KeyGenerator(org.apache.ibatis.executor.keygen.KeyGenerator) SqlMethod(com.baomidou.mybatisplus.core.enums.SqlMethod)

Example 2 with SqlMethod

use of com.baomidou.mybatisplus.core.enums.SqlMethod in project solon by noear.

the class Upsert method injectMappedStatement.

@Override
public MappedStatement injectMappedStatement(Class<?> mapperClass, Class<?> modelClass, TableInfo tableInfo) {
    KeyGenerator keyGenerator = NoKeyGenerator.INSTANCE;
    SqlMethod sqlMethod = SqlMethod.UPSERT_ONE;
    String columnScript = SqlScriptUtils.convertTrim(tableInfo.getAllInsertSqlColumnMaybeIf(null), LEFT_BRACKET, RIGHT_BRACKET, null, COMMA);
    String valuesScript = SqlScriptUtils.convertTrim(tableInfo.getAllInsertSqlPropertyMaybeIf(null), LEFT_BRACKET, RIGHT_BRACKET, null, COMMA);
    String keyProperty = null;
    String keyColumn = null;
    // 表包含主键处理逻辑,如果不包含主键当普通字段处理
    if (tableInfo.havePK()) {
        // 自增主键会造成HBase单Region数据挤压,直接移除
        if (null != tableInfo.getKeySequence()) {
            keyGenerator = TableInfoHelper.genKeyGenerator(this.methodName, tableInfo, builderAssistant);
            keyProperty = tableInfo.getKeyProperty();
            keyColumn = tableInfo.getKeyColumn();
        }
    }
    String sql = String.format(sqlMethod.getSql(), tableInfo.getTableName(), columnScript, valuesScript);
    SqlSource sqlSource = languageDriver.createSqlSource(configuration, sql, modelClass);
    return this.addInsertMappedStatement(mapperClass, modelClass, getMethod(sqlMethod), sqlSource, keyGenerator, keyProperty, keyColumn);
}
Also used : SqlSource(org.apache.ibatis.mapping.SqlSource) NoKeyGenerator(org.apache.ibatis.executor.keygen.NoKeyGenerator) KeyGenerator(org.apache.ibatis.executor.keygen.KeyGenerator) SqlMethod(com.baomidou.mybatisplus.core.enums.SqlMethod)

Example 3 with SqlMethod

use of com.baomidou.mybatisplus.core.enums.SqlMethod in project JBM by numen06.

the class SelectByCode method injectMappedStatement.

@Override
public MappedStatement injectMappedStatement(Class<?> mapperClass, Class<?> modelClass, TableInfo tableInfo) {
    SqlMethod sqlMethod = SqlMethod.LOGIC_SELECT_BY_ID;
    SqlSource sqlSource = new RawSqlSource(configuration, String.format(sqlMethod.getSql(), sqlSelectColumns(tableInfo, false), tableInfo.getTableName(), column, column, tableInfo.getLogicDeleteSql(true, false)), Object.class);
    return this.addSelectMappedStatementForTable(mapperClass, MasterDataSqlInjector.SELECT_BY_CODE, sqlSource, tableInfo);
}
Also used : SqlSource(org.apache.ibatis.mapping.SqlSource) RawSqlSource(org.apache.ibatis.scripting.defaults.RawSqlSource) RawSqlSource(org.apache.ibatis.scripting.defaults.RawSqlSource) SqlMethod(com.baomidou.mybatisplus.core.enums.SqlMethod)

Example 4 with SqlMethod

use of com.baomidou.mybatisplus.core.enums.SqlMethod in project onex-boot by zhangchaoxu.

the class LogicDeleteBatchByIdsWithFill method injectMappedStatement.

@Override
public MappedStatement injectMappedStatement(Class<?> mapperClass, Class<?> modelClass, TableInfo tableInfo) {
    SqlMethod sqlMethod = SqlMethod.LOGIC_DELETE_BATCH_BY_IDS;
    String sql;
    if (tableInfo.isWithLogicDelete()) {
        // 包含->逻辑删除
        // 自动填充字段
        List<TableFieldInfo> fieldInfos = tableInfo.getFieldList().stream().filter(TableFieldInfo::isWithUpdateFill).collect(toList());
        // 自动填充sql
        String sqlSet;
        if (CollectionUtils.isNotEmpty(fieldInfos)) {
            // 包含->自动填充字段
            sqlSet = "SET " + fieldInfos.stream().map(i -> i.getSqlSet(ENTITY_DOT)).collect(joining(EMPTY)) + tableInfo.getLogicDeleteSql(false, false);
        } else {
            // 不包含->自动填充字段
            sqlSet = sqlLogicSet(tableInfo);
        }
        sql = String.format(sqlMethod.getSql(), tableInfo.getTableName(), sqlSet, tableInfo.getKeyColumn(), SqlScriptUtils.convertForeach("#{item}", COLLECTION, null, "item", COMMA), tableInfo.getLogicDeleteSql(true, true));
    } else {
        // 不包含->逻辑删除
        sqlMethod = SqlMethod.DELETE_BATCH_BY_IDS;
        sql = String.format(sqlMethod.getSql(), tableInfo.getTableName(), tableInfo.getKeyColumn(), SqlScriptUtils.convertForeach("#{item}", COLLECTION, null, "item", COMMA));
    }
    SqlSource sqlSource = languageDriver.createSqlSource(configuration, sql, modelClass);
    return addUpdateMappedStatement(mapperClass, modelClass, MAPPER_METHOD, sqlSource);
}
Also used : TableFieldInfo(com.baomidou.mybatisplus.core.metadata.TableFieldInfo) SqlSource(org.apache.ibatis.mapping.SqlSource) SqlMethod(com.baomidou.mybatisplus.core.enums.SqlMethod)

Example 5 with SqlMethod

use of com.baomidou.mybatisplus.core.enums.SqlMethod in project onex-boot by zhangchaoxu.

the class LogicDeleteByIdWithFill method injectMappedStatement.

@Override
public MappedStatement injectMappedStatement(Class<?> mapperClass, Class<?> modelClass, TableInfo tableInfo) {
    SqlMethod sqlMethod = SqlMethod.LOGIC_DELETE_BY_ID;
    String sql;
    if (tableInfo.isWithLogicDelete()) {
        // 包含->逻辑删除
        // 自动填充字段
        List<TableFieldInfo> fieldInfos = tableInfo.getFieldList().stream().filter(TableFieldInfo::isWithUpdateFill).collect(toList());
        // 自动填充sql
        String sqlSet;
        if (CollectionUtils.isNotEmpty(fieldInfos)) {
            // 包含->自动填充字段
            sqlSet = "SET " + fieldInfos.stream().map(i -> i.getSqlSet(ENTITY_DOT)).collect(joining(EMPTY)) + tableInfo.getLogicDeleteSql(false, false);
        } else {
            // 不包含->自动填充字段
            sqlSet = sqlLogicSet(tableInfo);
        }
        sql = String.format(sqlMethod.getSql(), tableInfo.getTableName(), sqlSet, tableInfo.getKeyColumn(), tableInfo.getKeyProperty(), tableInfo.getLogicDeleteSql(true, true));
    } else {
        // 不包含->逻辑删除
        sqlMethod = SqlMethod.DELETE_BY_ID;
        sql = String.format(sqlMethod.getSql(), tableInfo.getTableName(), tableInfo.getKeyColumn(), tableInfo.getKeyProperty());
    }
    SqlSource sqlSource = languageDriver.createSqlSource(configuration, sql, modelClass);
    return addUpdateMappedStatement(mapperClass, modelClass, MAPPER_METHOD, sqlSource);
}
Also used : TableFieldInfo(com.baomidou.mybatisplus.core.metadata.TableFieldInfo) SqlSource(org.apache.ibatis.mapping.SqlSource) SqlMethod(com.baomidou.mybatisplus.core.enums.SqlMethod)

Aggregations

SqlMethod (com.baomidou.mybatisplus.core.enums.SqlMethod)9 SqlSource (org.apache.ibatis.mapping.SqlSource)9 TableFieldInfo (com.baomidou.mybatisplus.core.metadata.TableFieldInfo)5 KeyGenerator (org.apache.ibatis.executor.keygen.KeyGenerator)3 NoKeyGenerator (org.apache.ibatis.executor.keygen.NoKeyGenerator)3 IdType (com.baomidou.mybatisplus.annotation.IdType)2 AbstractMethod (com.baomidou.mybatisplus.core.injector.AbstractMethod)2 TableInfo (com.baomidou.mybatisplus.core.metadata.TableInfo)2 TableInfoHelper (com.baomidou.mybatisplus.core.metadata.TableInfoHelper)2 SqlScriptUtils (com.baomidou.mybatisplus.core.toolkit.sql.SqlScriptUtils)2 List (java.util.List)2 Predicate (java.util.function.Predicate)2 Setter (lombok.Setter)2 Accessors (lombok.experimental.Accessors)2 Jdbc3KeyGenerator (org.apache.ibatis.executor.keygen.Jdbc3KeyGenerator)2 MappedStatement (org.apache.ibatis.mapping.MappedStatement)2 InsertBatchSomeColumn (com.baomidou.mybatisplus.extension.injector.methods.InsertBatchSomeColumn)1 RawSqlSource (org.apache.ibatis.scripting.defaults.RawSqlSource)1