-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyAbstractMethod.java
62 lines (54 loc) · 2.73 KB
/
MyAbstractMethod.java
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
package com.example.config;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.core.injector.AbstractMethod;
import com.baomidou.mybatisplus.core.metadata.TableFieldInfo;
import com.baomidou.mybatisplus.core.metadata.TableInfo;
import com.baomidou.mybatisplus.core.metadata.TableInfoHelper;
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
import com.baomidou.mybatisplus.core.toolkit.sql.SqlInjectionUtils;
import org.apache.ibatis.executor.keygen.Jdbc3KeyGenerator;
import org.apache.ibatis.executor.keygen.KeyGenerator;
import org.apache.ibatis.executor.keygen.NoKeyGenerator;
import org.apache.ibatis.mapping.MappedStatement;
import org.apache.ibatis.mapping.SqlSource;
import java.util.stream.Collectors;
public class MyAbstractMethod extends AbstractMethod {
public static final String SQL = """
<script>
INSERT INTO %s
(%s)
VALUES
<foreach collection="items" item="item" separator=",">
(%s)
</foreach>
</script>
""";
public MyAbstractMethod() {
super("insertBatch");
}
@Override
public MappedStatement injectMappedStatement(Class<?> mapperClass, Class<?> modelClass, TableInfo tableInfo) {
String columns = tableInfo.getFieldList().stream().map(TableFieldInfo::getColumn).map(s -> "`" + s + "`").collect(Collectors.joining(", "));
String values = tableInfo.getFieldList().stream().map(TableFieldInfo::getProperty).map(s -> "#{item." + s + "}").collect(Collectors.joining(", "));
String sql = String.format(SQL, tableInfo.getTableName(), columns, values);
SqlSource sqlSource = createSqlSource(configuration, sql, modelClass);
KeyGenerator keyGenerator = NoKeyGenerator.INSTANCE;
String keyProperty = null;
String keyColumn = null;
// 表包含主键处理逻辑,如果不包含主键当普通字段处理
if (StringUtils.isNotBlank(tableInfo.getKeyProperty())) {
if (tableInfo.getIdType() == IdType.AUTO) {
/* 自增主键 */
keyGenerator = Jdbc3KeyGenerator.INSTANCE;
keyProperty = tableInfo.getKeyProperty();
// 去除转义符
keyColumn = SqlInjectionUtils.removeEscapeCharacter(tableInfo.getKeyColumn());
} else if (null != tableInfo.getKeySequence()) {
keyGenerator = TableInfoHelper.genKeyGenerator(methodName, tableInfo, builderAssistant);
keyProperty = tableInfo.getKeyProperty();
keyColumn = tableInfo.getKeyColumn();
}
}
return addInsertMappedStatement(mapperClass, modelClass, sqlSource, keyGenerator, keyProperty, keyColumn);
}
}