|
@@ -146,12 +146,12 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
String whereStr = (String) dbFilter.get("whereStr");//where字符串--依据参数变化不可缓存
|
|
|
|
|
|
List<Object> dbValueList = new ArrayList<>();
|
|
|
- event = "6".equals(event) && MapTools.isNotBlank(tableName) ? isExist(tableName, whereStr, filterList) : event;//如果是事件6则需要先进行判断后再决定事件
|
|
|
- Map<String, Object> dbValueInfo = MapTools.isNotBlank(sqlStr) ? getdbValueForSql(execSQLStr, varList, signParam) : getdbValueForTable(tableName, event, authColumn, signParam, Objects.equals("true", calcInfo.get("isActive")));//获取执行的参数值集合,SQL语句方式针对的是书名号变量,注意使用未替换书名号的SQL语句
|
|
|
+ String newEvent = "6".equals(event) && MapTools.isNotBlank(tableName) ? isExist(tableName, whereStr, filterList) : event;//如果是事件6则需要先进行判断后再决定事件
|
|
|
+ Map<String, Object> dbValueInfo = MapTools.isNotBlank(sqlStr) ? getdbValueForSql(execSQLStr, varList, signParam) : getdbValueForTable(tableName, newEvent, authColumn, signParam, Objects.equals("true", calcInfo.get("isActive")));//获取执行的参数值集合,SQL语句方式针对的是书名号变量,注意使用未替换书名号的SQL语句
|
|
|
dbValueList = (List<Object>) dbValueInfo.get("dbValue");//执行参数
|
|
|
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字符串不为空
|
|
|
+ rowCountSql = "0".equals(newEvent) && MapTools.isNotBlank(allSQLColumn) ? execSQLStr.replace(allSQLColumn, " count(1) ") : "";//查询则创建rowCountSql
|
|
|
+ if (MapTools.isNotBlank(whereStr) && !"1".equals(newEvent)) {//如果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(")");
|
|
|
dbValueList.addAll(filterList);//组合执行参数
|
|
@@ -159,14 +159,14 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
|
|
|
Map<String, Object> sqlParmMap = new HashMap<>();
|
|
|
sqlParmMap.put("rowCountSql", rowCountSql);//行总数查询
|
|
|
- sqlParmMap.put("event", event);//事件
|
|
|
- Map<String, Map<String, Object>> tempSQLMap = "1".equals(event) ? inertSQLMap : execSQLMap;
|
|
|
+ sqlParmMap.put("event", newEvent);//事件
|
|
|
+ Map<String, Map<String, Object>> tempSQLMap = "1".equals(newEvent) ? inertSQLMap : execSQLMap;
|
|
|
|
|
|
List signParamList = Objects.nonNull(tempSQLMap.get(execSQLStr)) && Objects.nonNull(tempSQLMap.get(execSQLStr).get("signParam")) ? (List) tempSQLMap.get(execSQLStr).get("signParam") : new ArrayList<>();//获取对应SQL语句的执行参数,没有则默认为空数组
|
|
|
List dbParam = Objects.nonNull(tempSQLMap.get(execSQLStr)) && Objects.nonNull(tempSQLMap.get(execSQLStr).get("dbParam")) ? (List) tempSQLMap.get(execSQLStr).get("dbParam") : new ArrayList<>();//获取对应SQL语句的执行参数,没有则默认为空数组
|
|
|
signParamList.add(signParam);
|
|
|
sqlParmMap.put("signParam", signParamList);//上传的参数
|
|
|
- if ("1".equals(event)) {
|
|
|
+ if ("1".equals(newEvent)) {
|
|
|
//参数一致时,去重执行
|
|
|
dbParam.add(dbValueList);//添加当前行的执行参数
|
|
|
sqlParmMap.put("dbParam", dbParam);//执行参数
|
|
@@ -174,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) && dbParam.size() > 0) {
|
|
|
+ if ("0".equals(newEvent) && 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);
|
|
@@ -189,7 +189,7 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
}
|
|
|
}
|
|
|
sqlParmMap.put("dbParam", dbParam);//执行参数
|
|
|
- if (MapTools.isBlank(whereStr) && "2,3".contains(event)) {
|
|
|
+ if (MapTools.isBlank(whereStr) && "2,3".contains(newEvent)) {
|
|
|
sqlParmMap.put("noExec", " 禁止全表更新、删除");//执行参数
|
|
|
}
|
|
|
execSQLMap.put(execSQLStr, sqlParmMap);//添加到最终执行列表中
|
|
@@ -431,7 +431,7 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
Matcher matcher = regExpression.matcher(sqlStr);//正则提取
|
|
|
while (matcher.find()) {//循环提取到的所有书名号变量
|
|
|
String varName = matcher.group();
|
|
|
- sqlvarList.add(varName);//添加到变量列表---如果是in则书名号应该设置为《:col》,此处替换不使用?,在变量获取时依据变量进行多个?号替换select* from 行李日志表 where 行李牌号 in (《:行李牌号》)
|
|
|
+ sqlvarList.add(varName.trim());//添加到变量列表---如果是in则书名号应该设置为《:col》,此处替换不使用?,在变量获取时依据变量进行多个?号替换select* from 行李日志表 where 行李牌号 in (《:行李牌号》)
|
|
|
newSqlStr = newSqlStr.replaceFirst("《".concat(varName).concat("》"), varName.startsWith(":") ? varName.concat("?") : "?"); //修订SQL
|
|
|
}
|
|
|
sqlStrVarList.put(sqlStr, sqlvarList);//添加到缓存
|
|
@@ -547,12 +547,13 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
}
|
|
|
HashSet<Object> tableUniqe = event6Map.get(tableName);//获取已经缓存的数据
|
|
|
String oldKey = whereStr.concat(MapTools.objToJSONStr(dbFilter));//条件字符串加条件执行参数
|
|
|
- if (!tableUniqe.contains(oldKey)) {//如果不存在则查数据库
|
|
|
+ if (!tableUniqe.contains(oldKey)) {//如果不存在则查数据库 // 23298306
|
|
|
try {
|
|
|
List<Map<String, Object>> isExistResult = theJdbcTemplate.queryForList("select 1 from ".concat(tableName).concat(" where ").concat(whereStr).concat(" limit 1"), dbFilter.toArray());
|
|
|
event = (isExistResult.size() == 0) ? "1" : event;//数据库不存在则新增
|
|
|
//如果是新增则修订为新增SQL
|
|
|
tableUniqe.add(oldKey);//无论是新增还是更新都添加到缓存
|
|
|
+// event6Map.put(tableName,tableUniqe);
|
|
|
} catch (Exception e) {//查询失败并不更新缓存
|
|
|
//打印错误即可
|
|
|
}
|
|
@@ -682,12 +683,18 @@ public class MyDbHelper {//目前只差主键的条件优化
|
|
|
connection = theDataSource.getConnection();//获取连接
|
|
|
sqlPS = connection.prepareStatement(sqlStr);//预编译SQL
|
|
|
connection.setAutoCommit(false); //手动事务
|
|
|
- for (Object tempSigndbValue : dbValue) {//循环添加参数
|
|
|
- Object[] signdbValue = ((List<Object>) tempSigndbValue).toArray();
|
|
|
+ for (int i = 0; i < dbValue.size(); i++) {
|
|
|
+
|
|
|
+ Object[] signdbValue = ((List<Object>)dbValue.get(i)).toArray();
|
|
|
for (int index = 0; index < signdbValue.length; index++) {
|
|
|
sqlPS.setObject(index + 1, signdbValue[index]);
|
|
|
}
|
|
|
sqlPS.addBatch();
|
|
|
+ if ((i+1) % 500 == 0){
|
|
|
+ sqlPS.executeBatch();
|
|
|
+ connection.commit(); // 统一提交
|
|
|
+ sqlPS.clearBatch();
|
|
|
+ }
|
|
|
}
|
|
|
sqlPS.executeBatch();
|
|
|
connection.commit(); // 统一提交
|