|
@@ -31,7 +31,7 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
|
|
|
private HashMap<String, HashSet<Object>> event6Map = new HashMap<>();//用于事件6是否存在的内存检测
|
|
|
|
|
|
- private boolean isActive = true;
|
|
|
+ private boolean isActive = false;
|
|
|
|
|
|
private Map<String, String> eventSQL = new HashMap<>() {{//用于表名方式组建SQL的基本语句
|
|
|
put("0", "select 字段 from 表名");
|
|
@@ -79,10 +79,8 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
config.setDriverClassName(connectMaps.get("driver-class-name").toString());
|
|
|
theDataSource = new HikariDataSource(config);
|
|
|
theJdbcTemplate = new JdbcTemplate(theDataSource);
|
|
|
- try (
|
|
|
- Connection theConnect = theDataSource.getConnection();//用于批量新增以及获取当前数据库的相关信息
|
|
|
- ResultSet tablesRsesult = theConnect.getMetaData().getTables(theConnect.getCatalog(), theConnect.getCatalog(), null, new String[]{"TABLE"});
|
|
|
- ) {
|
|
|
+ try (Connection theConnect = theDataSource.getConnection();//用于批量新增以及获取当前数据库的相关信息
|
|
|
+ ResultSet tablesRsesult = theConnect.getMetaData().getTables(theConnect.getCatalog(), theConnect.getCatalog(), null, new String[]{"TABLE"});) {
|
|
|
while (tablesRsesult.next()) {//缓存当前数据库的所有表名
|
|
|
tableList.add(tablesRsesult.getString("TABLE_NAME"));//获取表名
|
|
|
}
|
|
@@ -140,7 +138,7 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
} else {
|
|
|
initParam.add(new HashMap<>());
|
|
|
}
|
|
|
-
|
|
|
+ int whereIndex = 0;
|
|
|
for (Map<String, Object> signParam : initParam) {//循环入口参数,可以开启多线程执行
|
|
|
String execSQLStr = newSqlStr;
|
|
|
Map<String, Object> dbFilter = getdbFilter(varList, event, signParam, rowAuth, allSQLColumn);//获取条件,1、返回where字符串;2、返回执行参数 where 值
|
|
@@ -154,14 +152,8 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
execSQLStr = dbValueInfo.get("newSqlStr").toString();//修订后的SQL语句,针对in方式进行修订
|
|
|
rowCountSql = "0".equals(event) && MapTools.isNotBlank(allSQLColumn) ? execSQLStr.replace(allSQLColumn, " count(1) ") : "";//查询则创建rowCountSql
|
|
|
if (MapTools.isNotBlank(whereStr) && !"1".equals(event)) {//如果where字符串不为空
|
|
|
- execSQLStr = execSQLStr.concat(execSQLStr.lastIndexOf(")") >= execSQLStr.toLowerCase().lastIndexOf(" where ") ? " where " : " and ")
|
|
|
- .concat("(")
|
|
|
- .concat(whereStr)
|
|
|
- .concat(")");
|
|
|
- rowCountSql = MapTools.isBlank(rowCountSql) ? "" : rowCountSql.concat(rowCountSql.lastIndexOf(")") >= rowCountSql.lastIndexOf(" where ") ? " where " : " and ")
|
|
|
- .concat("(")
|
|
|
- .concat(whereStr)
|
|
|
- .concat(")");
|
|
|
+ execSQLStr = execSQLStr.concat(execSQLStr.lastIndexOf(")") >= execSQLStr.toLowerCase().lastIndexOf(" where ") ? " where " : " and ").concat("(").concat(whereStr).concat(")");
|
|
|
+ rowCountSql = MapTools.isBlank(rowCountSql) ? "" : rowCountSql.concat(rowCountSql.lastIndexOf(")") >= rowCountSql.lastIndexOf(" where ") ? " where " : " and ").concat("(").concat(whereStr).concat(")");
|
|
|
dbValueList.addAll(filterList);//组合执行参数
|
|
|
}
|
|
|
|
|
@@ -182,7 +174,7 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
} else {
|
|
|
if (!dbParam.contains(dbValueList)) {//参数一致时,去重执行
|
|
|
String batchSQL = Objects.nonNull(execSQLMap.get(execSQLStr)) && Objects.nonNull(execSQLMap.get(execSQLStr).get("batchSQL")) ? execSQLMap.get(execSQLStr).get("batchSQL").toString() : "";
|
|
|
- if ("0".equals(event) && batchSQL.contains(whereStr) && dbParam.size() > 0) {
|
|
|
+ if ("0".equals(event) && dbParam.size() > 0) {
|
|
|
batchSQL = (MapTools.isBlank(batchSQL) ? execSQLStr : batchSQL).concat(" or (").concat(whereStr).concat(")");
|
|
|
List tempList = dbParam.isEmpty() ? new ArrayList() : (List) dbParam.get(0);
|
|
|
tempList.addAll(dbValueList);
|
|
@@ -192,6 +184,9 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
} else {
|
|
|
dbParam.add(dbValueList);//添加当前行的执行参数
|
|
|
}
|
|
|
+ if (execSQLStr.indexOf("{")>0 && execSQLStr.indexOf("}")>0){
|
|
|
+ whereIndex ++;
|
|
|
+ }
|
|
|
}
|
|
|
sqlParmMap.put("dbParam", dbParam);//执行参数
|
|
|
if (MapTools.isBlank(whereStr) && "2,3".contains(event)) {
|
|
@@ -200,25 +195,42 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
execSQLMap.put(execSQLStr, sqlParmMap);//添加到最终执行列表中
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
//循环执行execSQLMap
|
|
|
inertSQLMap.putAll(execSQLMap);
|
|
|
for (String signSql : inertSQLMap.keySet()) {//循环当前MAP,查询必定是单条SQL,SQL语句方式:都是单条,表名方式:查询、新增是单条,更新、删除可能多条,事件6可能多条
|
|
|
+ Map<String, Object> signParamMap = inertSQLMap.get(signSql);
|
|
|
+ String newSignSQL = signSql;
|
|
|
+ if (signSql.indexOf("{")>0 && signSql.indexOf("}")>0){
|
|
|
+ String tempWhere = signSql.substring(signSql.indexOf("{")+1,signSql.indexOf("}"));
|
|
|
+ String newWhere = tempWhere;
|
|
|
+ for (int i = 0; i < whereIndex-1; i++) {
|
|
|
+ newWhere = newWhere.concat(" or ").concat(tempWhere);
|
|
|
+ }
|
|
|
+ newWhere = "(".concat(newWhere).concat(")");
|
|
|
+ signParamMap.put("batchSQL",null);
|
|
|
+ signParamMap.put("rowCountSql",null);
|
|
|
+ signSql = signSql.replace(tempWhere,newWhere).replace("{","").replace("}","");
|
|
|
+ }
|
|
|
+
|
|
|
Map<String, Object> execSignResult = new HashMap<>();
|
|
|
- if (inertSQLMap.get(signSql).containsKey("noExec")) {
|
|
|
+ if (signParamMap.containsKey("noExec")) {
|
|
|
execSignResult.put("code", "0");
|
|
|
execSignResult.put("message", " 禁止全表更新、删除");
|
|
|
} else {
|
|
|
- execSignResult = execSign(sqlStr, signSql, inertSQLMap.get(signSql), inputData);
|
|
|
+ execSignResult = execSign(sqlStr, signSql, signParamMap, inputData);
|
|
|
}
|
|
|
if ("-1".equals(execSignResult.get("code"))) {
|
|
|
return execSignResult;
|
|
|
}
|
|
|
- Map<String, Object> signParamMap = inertSQLMap.get(signSql);
|
|
|
signParamMap.put("returnData", execSignResult.get("returnData"));
|
|
|
signParamMap.put("rowcount", execSignResult.get("rowcount"));
|
|
|
signParamMap.put("sql", signSql);
|
|
|
// returnList.add(execSignResult.get("returnData"));
|
|
|
- inertSQLMap.put(signSql, signParamMap);
|
|
|
+ inertSQLMap.put(newSignSQL, signParamMap);
|
|
|
}
|
|
|
Object obj = new Object();
|
|
|
if (inertSQLMap.keySet().size() == 1) {
|
|
@@ -232,7 +244,7 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
return processSuccess(obj);
|
|
|
} catch (Exception e) {
|
|
|
return processFail("generalProcess函数:执行出错", LogUtils.getException(e), inParams);
|
|
|
- }finally {
|
|
|
+ } finally {
|
|
|
isActive = false;
|
|
|
}
|
|
|
}
|
|
@@ -284,6 +296,27 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ public Map<String, Object> getAllColumnTableSet(String tabeName) {
|
|
|
+ try (Connection connection = theDataSource.getConnection()) {
|
|
|
+ DatabaseMetaData dbMetaData = connection.getMetaData();
|
|
|
+ ResultSet rs = dbMetaData.getColumns(connection.getCatalog(), connection.getCatalog(), tabeName, "%");
|
|
|
+ List<Map<String, Object>> columnList = new ArrayList<>();
|
|
|
+ while (rs.next()) {
|
|
|
+ Map<String, Object> tempMap = new HashMap<>();
|
|
|
+ tempMap.put("columnName", rs.getString("COLUMN_NAME"));
|
|
|
+ tempMap.put("columnType", rs.getString("TYPE_NAME"));
|
|
|
+ tempMap.put("columnLable", rs.getString("REMARKS"));
|
|
|
+ tempMap.put("columnDescribe", rs.getString("REMARKS"));
|
|
|
+ tempMap.put("COLUMN_SIZE", rs.getString("COLUMN_SIZE"));
|
|
|
+ columnList.add(tempMap);
|
|
|
+ }
|
|
|
+ return processSuccess(columnList);
|
|
|
+ } catch (Exception e) {
|
|
|
+ return processFail("列设置初始化,获取失败".concat(LogUtils.getException(e)), tabeName, null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
//SQL语句方式设置列权限
|
|
|
private String setAuthColumn(String sqlStr, List<String> authColumn, String eventStr) {
|
|
|
try {
|
|
@@ -462,12 +495,7 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
if (Objects.nonNull(column) && !varList.contains(column.toString())) {//列名不为空 且 (可用列未获取 或者 当前列存在于可用列)
|
|
|
String connector = Objects.isNull(filterMap.get("connector")) ? "" : filterMap.get("connector").toString();//处理连接字符串
|
|
|
Object comparator = Objects.isNull(filterMap.get("comparator")) ? "" : filterMap.get("comparator").toString();//比较符
|
|
|
- whereStr = whereStr.concat(filterMap.get("left").toString())
|
|
|
- .concat(column.toString())
|
|
|
- .concat(comparator.toString())
|
|
|
- .concat(" is null ".equals(comparator) ? "" : "?")
|
|
|
- .concat(filterMap.get("right").toString())
|
|
|
- .concat((MapTools.isBlank(connector)) ? " and " : ("lastConnector".equals(connector) ? "" : " ".concat(connector).concat(" ")));
|
|
|
+ whereStr = whereStr.concat(filterMap.get("left").toString()).concat(column.toString()).concat(comparator.toString()).concat(" is null ".equals(comparator) ? "" : "?").concat(filterMap.get("right").toString()).concat((MapTools.isBlank(connector)) ? " and " : ("lastConnector".equals(connector) ? "" : " ".concat(connector).concat(" ")));
|
|
|
if (!" is null ".equals(comparator)) {//不是is null,且不是SQL语句执行方式
|
|
|
dbFilter.add(filterMap.get("value"));//添加执行参数
|
|
|
}
|
|
@@ -614,10 +642,9 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
for (Object signValue : dbValue) {
|
|
|
try {//执行查询
|
|
|
Map<String, Object> returnData = processSuccess(theJdbcTemplate.queryForList(signSql, ((List) signValue).toArray()));
|
|
|
- String rowCountSQL = sqlParmMap.get("rowCountSql").toString();//提取行总数查询语句
|
|
|
try {
|
|
|
- if (!MapTools.isBlank(rowCountSQL)) {
|
|
|
- returnData.put("rowcount", theJdbcTemplate.queryForObject(rowCountSQL, Integer.class, ((List) signValue).toArray()));
|
|
|
+ if (Objects.nonNull( sqlParmMap.get("rowCountSql"))) {
|
|
|
+ returnData.put("rowcount", theJdbcTemplate.queryForObject( sqlParmMap.get("rowCountSql").toString(), Integer.class, ((List) signValue).toArray()));
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
System.out.println("获取rowcount失败: ".concat(LogUtils.getException(e)));
|
|
@@ -699,7 +726,7 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
public void close() {
|
|
|
try {
|
|
|
errorMessage = "对象正在关闭";
|
|
|
- while (isActive){
|
|
|
+ while (isActive) {
|
|
|
Thread.sleep(1);
|
|
|
}
|
|
|
if (Objects.nonNull(theDataSource) && theDataSource.isRunning()) {//关闭连接池
|
|
@@ -720,7 +747,7 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
try {
|
|
|
resultData1 = (Map<String, Object>) returnData;
|
|
|
} catch (Exception e) {
|
|
|
- resultData1.put("returnData",returnData);
|
|
|
+ resultData1.put("returnData", returnData);
|
|
|
}
|
|
|
resultData1.put("code", "0");
|
|
|
return resultData1;
|