feat: 支持链式与 Builder 构建。

This commit is contained in:
Suomm 2023-08-23 08:24:59 +08:00
parent 1d07176f32
commit 6787403cf9
3 changed files with 306 additions and 130 deletions

View File

@ -24,8 +24,11 @@ import java.io.Serializable;
/** /**
* 表字段的单独设置 * 表字段的单独设置
*/ */
@SuppressWarnings({"rawtypes", "UnusedReturnValue", "unused"})
public class ColumnConfig implements Serializable { public class ColumnConfig implements Serializable {
private static final long serialVersionUID = -1511605303951623381L;
/** /**
* 字段名称 * 字段名称
*/ */
@ -56,6 +59,11 @@ public class ColumnConfig implements Serializable {
*/ */
private Boolean version; private Boolean version;
/**
* 是否是租户 ID
*/
private Boolean tenantId;
/** /**
* 配置的 jdbcType * 配置的 jdbcType
*/ */
@ -82,7 +90,7 @@ public class ColumnConfig implements Serializable {
/** /**
* 脱敏方式 * 脱敏方式
*/ */
private String mask; private String maskType;
/** /**
* 字段是否为主键 * 字段是否为主键
@ -104,139 +112,235 @@ public class ColumnConfig implements Serializable {
*/ */
private Boolean keyBefore; private Boolean keyBefore;
/** public static ColumnConfig create() {
* 是否是租户 ID return new ColumnConfig();
*/
private Boolean tenantId;
public String getColumnName() {
return columnName;
} }
public void setColumnName(String columnName) { public String getColumnName() {
return this.columnName;
}
public ColumnConfig setColumnName(String columnName) {
this.columnName = columnName; this.columnName = columnName;
return this;
} }
public String getOnInsertValue() { public String getOnInsertValue() {
return onInsertValue; return this.onInsertValue;
} }
public void setOnInsertValue(String onInsertValue) { public ColumnConfig setOnInsertValue(String onInsertValue) {
this.onInsertValue = onInsertValue; this.onInsertValue = onInsertValue;
return this;
} }
public String getOnUpdateValue() { public String getOnUpdateValue() {
return onUpdateValue; return this.onUpdateValue;
} }
public void setOnUpdateValue(String onUpdateValue) { public ColumnConfig setOnUpdateValue(String onUpdateValue) {
this.onUpdateValue = onUpdateValue; this.onUpdateValue = onUpdateValue;
return this;
} }
public Boolean getLarge() { public Boolean getLarge() {
return isLarge; return this.isLarge;
} }
public void setLarge(Boolean large) { public ColumnConfig setLarge(Boolean large) {
isLarge = large; this.isLarge = large;
return this;
} }
public Boolean getLogicDelete() { public Boolean getLogicDelete() {
return isLogicDelete; return this.isLogicDelete;
} }
public void setLogicDelete(Boolean logicDelete) { public ColumnConfig setLogicDelete(Boolean logicDelete) {
isLogicDelete = logicDelete; this.isLogicDelete = logicDelete;
return this;
} }
public Boolean getVersion() { public Boolean getVersion() {
return version; return this.version;
} }
public void setVersion(Boolean version) { public ColumnConfig setVersion(Boolean version) {
this.version = version; this.version = version;
} return this;
public JdbcType getJdbcType() {
return jdbcType;
}
public void setJdbcType(JdbcType jdbcType) {
this.jdbcType = jdbcType;
}
public Class<? extends TypeHandler> getTypeHandler() {
return typeHandler;
}
public void setTypeHandler(Class<? extends TypeHandler> typeHandler) {
this.typeHandler = typeHandler;
}
public String getMask() {
return mask;
}
public void setMask(String mask) {
this.mask = mask;
}
public boolean isPrimaryKey() {
return isPrimaryKey;
}
public void setPrimaryKey(boolean primaryKey) {
isPrimaryKey = primaryKey;
}
public KeyType getKeyType() {
return keyType;
}
public void setKeyType(KeyType keyType) {
this.keyType = keyType;
}
public String getKeyValue() {
return keyValue;
}
public void setKeyValue(String keyValue) {
this.keyValue = keyValue;
}
public Boolean getKeyBefore() {
return keyBefore;
}
public void setKeyBefore(Boolean keyBefore) {
this.keyBefore = keyBefore;
} }
public Boolean getTenantId() { public Boolean getTenantId() {
return tenantId; return this.tenantId;
} }
public void setTenantId(Boolean tenantId) { public ColumnConfig setTenantId(Boolean tenantId) {
this.tenantId = tenantId; this.tenantId = tenantId;
return this;
}
public JdbcType getJdbcType() {
return this.jdbcType;
}
public ColumnConfig setJdbcType(JdbcType jdbcType) {
this.jdbcType = jdbcType;
return this;
} }
public String getPropertyType() { public String getPropertyType() {
return propertyType; return this.propertyType;
} }
/** public ColumnConfig setPropertyType(String propertyType) {
* 原始类型直接写类型名称int/long/float/double/boolean对象类型请写对应类的全限定名java.lang.String
*/
public void setPropertyType(String propertyType) {
this.propertyType = propertyType; this.propertyType = propertyType;
return this;
} }
public String getPropertyDefaultValue() { public String getPropertyDefaultValue() {
return propertyDefaultValue; return this.propertyDefaultValue;
} }
public void setPropertyDefaultValue(String propertyDefaultValue) { public ColumnConfig setPropertyDefaultValue(String propertyDefaultValue) {
this.propertyDefaultValue = propertyDefaultValue; this.propertyDefaultValue = propertyDefaultValue;
return this;
} }
public Class<? extends TypeHandler> getTypeHandler() {
return this.typeHandler;
}
public ColumnConfig setTypeHandler(Class<? extends TypeHandler> typeHandler) {
this.typeHandler = typeHandler;
return this;
}
public String getMaskType() {
return this.maskType;
}
public ColumnConfig setMaskType(String maskType) {
this.maskType = maskType;
return this;
}
public boolean isPrimaryKey() {
return this.isPrimaryKey;
}
public ColumnConfig setPrimaryKey(boolean primaryKey) {
this.isPrimaryKey = primaryKey;
return this;
}
public KeyType getKeyType() {
return this.keyType;
}
public ColumnConfig setKeyType(KeyType keyType) {
this.keyType = keyType;
return this;
}
public String getKeyValue() {
return this.keyValue;
}
public ColumnConfig setKeyValue(String keyValue) {
this.keyValue = keyValue;
return this;
}
public Boolean getKeyBefore() {
return this.keyBefore;
}
public ColumnConfig setKeyBefore(Boolean keyBefore) {
this.keyBefore = keyBefore;
return this;
}
public static final class Builder {
private final ColumnConfig columnConfig;
private Builder() {
this.columnConfig = new ColumnConfig();
}
public static Builder builder() {
return new Builder();
}
public Builder columnName(String columnName) {
this.columnConfig.setColumnName(columnName);
return this;
}
public Builder onInsertValue(String onInsertValue) {
this.columnConfig.setOnInsertValue(onInsertValue);
return this;
}
public Builder onUpdateValue(String onUpdateValue) {
this.columnConfig.setOnUpdateValue(onUpdateValue);
return this;
}
public Builder version(Boolean version) {
this.columnConfig.setVersion(version);
return this;
}
public Builder tenantId(Boolean tenantId) {
this.columnConfig.setTenantId(tenantId);
return this;
}
public Builder jdbcType(JdbcType jdbcType) {
this.columnConfig.setJdbcType(jdbcType);
return this;
}
public Builder propertyType(String propertyType) {
this.columnConfig.setPropertyType(propertyType);
return this;
}
public Builder propertyDefaultValue(String propertyDefaultValue) {
this.columnConfig.setPropertyDefaultValue(propertyDefaultValue);
return this;
}
public Builder typeHandler(Class<? extends TypeHandler> typeHandler) {
this.columnConfig.setTypeHandler(typeHandler);
return this;
}
public Builder maskType(String maskType) {
this.columnConfig.setMaskType(maskType);
return this;
}
public Builder keyType(KeyType keyType) {
this.columnConfig.setKeyType(keyType);
return this;
}
public Builder keyValue(String keyValue) {
this.columnConfig.setKeyValue(keyValue);
return this;
}
public Builder keyBefore(Boolean keyBefore) {
this.columnConfig.setKeyBefore(keyBefore);
return this;
}
public ColumnConfig build() {
return this.columnConfig;
}
}
} }

View File

@ -25,18 +25,19 @@ import java.util.Map;
/** /**
* 表的单独设置 * 表的单独设置
*/ */
@SuppressWarnings({"unused", "UnusedReturnValue"})
public class TableConfig { public class TableConfig {
/**
* 表名
*/
private String tableName;
/** /**
* 数据库的 schema模式 * 数据库的 schema模式
*/ */
private String schema; private String schema;
/**
* 表名
*/
private String tableName;
/** /**
* 默认为 驼峰属性 转换为 下划线字段 * 默认为 驼峰属性 转换为 下划线字段
*/ */
@ -57,89 +58,160 @@ public class TableConfig {
*/ */
private Class<? extends SetListener> setListenerClass; private Class<? extends SetListener> setListenerClass;
/**
* 对应列的配置
*/
private Map<String, ColumnConfig> columnConfigMap;
/** /**
* 是否开启 Mapper 生成 * 是否开启 Mapper 生成
*/ */
private Boolean mapperGenerateEnable = Boolean.TRUE; private Boolean mapperGenerateEnable = Boolean.TRUE;
public String getTableName() { /**
return tableName; * 对应列的配置
} */
private Map<String, ColumnConfig> columnConfigMap;
public void setTableName(String tableName) { public static TableConfig create() {
this.tableName = tableName; return new TableConfig();
} }
public String getSchema() { public String getSchema() {
return schema; return this.schema;
} }
public void setSchema(String schema) { public TableConfig setSchema(String schema) {
this.schema = schema; this.schema = schema;
return this;
}
public String getTableName() {
return this.tableName;
}
public TableConfig setTableName(String tableName) {
this.tableName = tableName;
return this;
} }
public Boolean getCamelToUnderline() { public Boolean getCamelToUnderline() {
return camelToUnderline; return this.camelToUnderline;
} }
public void setCamelToUnderline(Boolean camelToUnderline) { public TableConfig setCamelToUnderline(Boolean camelToUnderline) {
this.camelToUnderline = camelToUnderline; this.camelToUnderline = camelToUnderline;
return this;
} }
public Class<? extends InsertListener> getInsertListenerClass() { public Class<? extends InsertListener> getInsertListenerClass() {
return insertListenerClass; return this.insertListenerClass;
} }
public void setInsertListenerClass(Class<? extends InsertListener> insertListenerClass) { public TableConfig setInsertListenerClass(Class<? extends InsertListener> insertListenerClass) {
this.insertListenerClass = insertListenerClass; this.insertListenerClass = insertListenerClass;
return this;
} }
public Class<? extends UpdateListener> getUpdateListenerClass() { public Class<? extends UpdateListener> getUpdateListenerClass() {
return updateListenerClass; return this.updateListenerClass;
} }
public void setUpdateListenerClass(Class<? extends UpdateListener> updateListenerClass) { public TableConfig setUpdateListenerClass(Class<? extends UpdateListener> updateListenerClass) {
this.updateListenerClass = updateListenerClass; this.updateListenerClass = updateListenerClass;
return this;
} }
public Class<? extends SetListener> getSetListenerClass() { public Class<? extends SetListener> getSetListenerClass() {
return setListenerClass; return this.setListenerClass;
} }
public void setSetListenerClass(Class<? extends SetListener> setListenerClass) { public TableConfig setSetListenerClass(Class<? extends SetListener> setListenerClass) {
this.setListenerClass = setListenerClass; this.setListenerClass = setListenerClass;
} return this;
public Map<String, ColumnConfig> getColumnConfigMap() {
return columnConfigMap;
}
public void setColumnConfigMap(Map<String, ColumnConfig> columnConfigMap) {
this.columnConfigMap = columnConfigMap;
} }
public Boolean getMapperGenerateEnable() { public Boolean getMapperGenerateEnable() {
return mapperGenerateEnable; return this.mapperGenerateEnable;
} }
public void setMapperGenerateEnable(Boolean mapperGenerateEnable) { public TableConfig setMapperGenerateEnable(Boolean mapperGenerateEnable) {
this.mapperGenerateEnable = mapperGenerateEnable; this.mapperGenerateEnable = mapperGenerateEnable;
return this;
} }
public void addColumnConfig(ColumnConfig columnConfig) { public Map<String, ColumnConfig> getColumnConfigMap() {
if (columnConfigMap == null) { return this.columnConfigMap;
columnConfigMap = new HashMap<>(); }
}
columnConfigMap.put(columnConfig.getColumnName(), columnConfig); public TableConfig setColumnConfigMap(Map<String, ColumnConfig> columnConfigMap) {
this.columnConfigMap = columnConfigMap;
return this;
}
public TableConfig addColumnConfig(ColumnConfig columnConfig) {
if (this.columnConfigMap == null) {
this.columnConfigMap = new HashMap<>();
}
this.columnConfigMap.put(columnConfig.getColumnName(), columnConfig);
return this;
}
protected ColumnConfig getColumnConfig(String columnName) {
return this.columnConfigMap == null ? null : this.columnConfigMap.get(columnName);
}
public static final class Builder {
private final TableConfig tableConfig;
private Builder() {
this.tableConfig = new TableConfig();
}
public static Builder builder() {
return new Builder();
}
public Builder schema(String schema) {
this.tableConfig.setSchema(schema);
return this;
}
public Builder tableName(String tableName) {
this.tableConfig.setTableName(tableName);
return this;
}
public Builder camelToUnderline(Boolean camelToUnderline) {
this.tableConfig.setCamelToUnderline(camelToUnderline);
return this;
}
public Builder insertListenerClass(Class<? extends InsertListener> insertListenerClass) {
this.tableConfig.setInsertListenerClass(insertListenerClass);
return this;
}
public Builder updateListenerClass(Class<? extends UpdateListener> updateListenerClass) {
this.tableConfig.setUpdateListenerClass(updateListenerClass);
return this;
}
public Builder setListenerClass(Class<? extends SetListener> setListenerClass) {
this.tableConfig.setSetListenerClass(setListenerClass);
return this;
}
public Builder mapperGenerateEnable(Boolean mapperGenerateEnable) {
this.tableConfig.setMapperGenerateEnable(mapperGenerateEnable);
return this;
}
public Builder columnConfig(ColumnConfig columnConfigMap) {
this.tableConfig.addColumnConfig(columnConfigMap);
return this;
}
public TableConfig build() {
return this.tableConfig;
} }
public ColumnConfig getColumnConfig(String columnName) {
return columnConfigMap == null ? null : columnConfigMap.get(columnName);
} }
} }

View File

@ -295,8 +295,8 @@ public class Column {
} }
//@ColumnMask 注解 //@ColumnMask 注解
if (columnConfig.getMask() != null) { if (columnConfig.getMaskType() != null) {
annotations.append("@ColumnMask(\"").append(columnConfig.getMask()).append("\")"); annotations.append("@ColumnMask(\"").append(columnConfig.getMaskType()).append("\")");
} }
return annotations.toString(); return annotations.toString();
@ -324,7 +324,7 @@ public class Column {
if (columnConfig.getPropertyType() != null) { if (columnConfig.getPropertyType() != null) {
addImportClass(importClasses, columnConfig.getPropertyType()); addImportClass(importClasses, columnConfig.getPropertyType());
} }
if (columnConfig.getMask() != null) { if (columnConfig.getMaskType() != null) {
addImportClass(importClasses, ColumnMask.class.getName()); addImportClass(importClasses, ColumnMask.class.getName());
} }