|
@@ -22,59 +22,60 @@ public class DataBase {
|
|
|
|
|
|
// 缓存数据 connectionStr + sql
|
|
|
|
|
|
- String key = "%s;%s;%s".formatted(connectionStr, sql, DataFormatUtil.toString(argsList));
|
|
|
- String effectivedurationColumnName = "effectiveduration";
|
|
|
- if (cacheDatas.containsKey(key)) {
|
|
|
- Map<String, Object> cacheData = cacheDatas.get(key);
|
|
|
-
|
|
|
- Object effectiveduration = cacheData.get(effectivedurationColumnName);
|
|
|
- if (Objects.isNull(effectiveduration) || ((LocalDateTime) effectiveduration).isBefore(LocalDateTime.now())) {
|
|
|
- cacheDatas.remove(key);
|
|
|
- } else {
|
|
|
- return ((List<Map<String, Object>>) cacheData.get("data"));
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- HikariPool dataSourcePool = getDataSourcePool(connectionStr);
|
|
|
- List<Map<String, Object>> result = argsList.parallelStream().flatMap(args -> {
|
|
|
- Connection connection = null;
|
|
|
- try {
|
|
|
- synchronized (dataSourcePool) {
|
|
|
- connection = dataSourcePool.getConnection();
|
|
|
+ String key = "%s;%s;%s".formatted(connectionStr, sql, DataFormatUtil.toString(argsList));
|
|
|
+ String effectivedurationColumnName = "effectiveduration";
|
|
|
+ if (cacheDatas.containsKey(key)) {
|
|
|
+ Map<String, Object> cacheData = cacheDatas.get(key);
|
|
|
+
|
|
|
+ Object effectiveduration = cacheData.get(effectivedurationColumnName);
|
|
|
+ if (Objects.isNull(effectiveduration) || ((LocalDateTime) effectiveduration).isBefore(LocalDateTime.now())) {
|
|
|
+ cacheDatas.remove(key);
|
|
|
+ } else {
|
|
|
+ return ((List<Map<String, Object>>) cacheData.get("data"));
|
|
|
}
|
|
|
- } catch (SQLException e) {
|
|
|
- throw new RuntimeException("数据库连接异常: %s\n sql: %s ;\n args: %s ".formatted(e.getMessage(), sql, DataFormatUtil.toString(args)));
|
|
|
}
|
|
|
- try (
|
|
|
- PreparedStatement preparedStatement = connection.prepareStatement(sql)
|
|
|
- ) {
|
|
|
- for (int i = 0; i < args.length; i++) {
|
|
|
- preparedStatement.setObject(i + 1, args[i]);
|
|
|
- }
|
|
|
- ResultSet resultSet = preparedStatement.executeQuery();
|
|
|
- return getResult(connectionStr, sql, resultSet).stream();
|
|
|
- } catch (Exception exception) {
|
|
|
- throw new RuntimeException("数据异常: %s\n sql: %s ;\n args: %s ".formatted(exception.getMessage(), sql, DataFormatUtil.toString(args)));
|
|
|
- } finally {
|
|
|
+
|
|
|
+ HikariPool dataSourcePool = getDataSourcePool(connectionStr);
|
|
|
+ List<Map<String, Object>> result = argsList.parallelStream().flatMap(args -> {
|
|
|
+ Connection connection = null;
|
|
|
try {
|
|
|
- connection.close();
|
|
|
+ synchronized (dataSourcePool) {
|
|
|
+ connection = dataSourcePool.getConnection();
|
|
|
+ }
|
|
|
} catch (SQLException e) {
|
|
|
- if (Config.isDebug()) {
|
|
|
- e.printStackTrace();
|
|
|
+ throw new RuntimeException("数据库连接异常: %s\n sql: %s ;\n args: %s ".formatted(e.getMessage(), sql, DataFormatUtil.toString(args)));
|
|
|
+ }
|
|
|
+ try (
|
|
|
+ PreparedStatement preparedStatement = connection.prepareStatement(sql)
|
|
|
+ ) {
|
|
|
+ for (int i = 0; i < args.length; i++) {
|
|
|
+ preparedStatement.setObject(i + 1, args[i]);
|
|
|
+ }
|
|
|
+ ResultSet resultSet = preparedStatement.executeQuery();
|
|
|
+ return getResult(connectionStr, sql, resultSet).stream();
|
|
|
+ } catch (Exception exception) {
|
|
|
+ throw new RuntimeException("数据异常: %s\n sql: %s ;\n args: %s ".formatted(exception.getMessage(), sql, DataFormatUtil.toString(args)));
|
|
|
+ } finally {
|
|
|
+ try {
|
|
|
+ connection.close();
|
|
|
+ } catch (SQLException e) {
|
|
|
+ if (Config.isDebug()) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
+ }).toList();
|
|
|
+ String querySql = """
|
|
|
+ select
|
|
|
+ datacacheid, connectset, querysql, querytable, effectiveduration, datacachedescribe
|
|
|
+ from datacache""";
|
|
|
+ if (!Objects.equals(querySql, sql)) {
|
|
|
+ cacheConfigList = query(Config.getCenterConnectionStr(), querySql);
|
|
|
}
|
|
|
- }).toList();
|
|
|
- String querySql = """
|
|
|
- select
|
|
|
- datacacheid, connectset, querysql, querytable, effectiveduration, datacachedescribe
|
|
|
- from datacache""";
|
|
|
- if (!Objects.equals(querySql, sql)) {
|
|
|
- cacheConfigList = query(Config.getCenterConnectionStr(), querySql);
|
|
|
- }
|
|
|
- List<Map<String, Object>> finalResult = result;
|
|
|
- saveCacheData(connectionStr, sql, key, effectivedurationColumnName, finalResult);
|
|
|
- return result;
|
|
|
+ List<Map<String, Object>> finalResult = result;
|
|
|
+ saveCacheData(connectionStr, sql, key, effectivedurationColumnName, finalResult);
|
|
|
+ return result;
|
|
|
+
|
|
|
}
|
|
|
|
|
|
private void saveCacheData(String connectionStr, String sql, String key, String effectivedurationColumnName, List<Map<String, Object>> finalResult) {
|
|
@@ -92,43 +93,44 @@ public class DataBase {
|
|
|
|
|
|
// 缓存数据 connectionStr + sql
|
|
|
|
|
|
- String key = "%s;%s;%s".formatted(connectionStr, sql, DataFormatUtil.toString(args));
|
|
|
- String effectivedurationColumnName = "effectiveduration";
|
|
|
- if (cacheDatas.containsKey(key)) {
|
|
|
- Map<String, Object> cacheData = cacheDatas.get(key);
|
|
|
+ String key = "%s;%s;%s".formatted(connectionStr, sql, DataFormatUtil.toString(args));
|
|
|
+ String effectivedurationColumnName = "effectiveduration";
|
|
|
+ if (cacheDatas.containsKey(key)) {
|
|
|
+ Map<String, Object> cacheData = cacheDatas.get(key);
|
|
|
+
|
|
|
+ Object effectiveduration = cacheData.get(effectivedurationColumnName);
|
|
|
+ if (Objects.isNull(effectiveduration) || ((LocalDateTime) effectiveduration).isBefore(LocalDateTime.now())) {
|
|
|
+ cacheDatas.remove(key);
|
|
|
+ } else {
|
|
|
+ return ((List<Map<String, Object>>) cacheData.get("data"));
|
|
|
+ }
|
|
|
|
|
|
- Object effectiveduration = cacheData.get(effectivedurationColumnName);
|
|
|
- if (Objects.isNull(effectiveduration) || ((LocalDateTime) effectiveduration).isBefore(LocalDateTime.now())) {
|
|
|
- cacheDatas.remove(key);
|
|
|
- } else {
|
|
|
- return ((List<Map<String, Object>>) cacheData.get("data"));
|
|
|
}
|
|
|
|
|
|
- }
|
|
|
+ HikariPool dataSourcePool = getDataSourcePool(connectionStr);
|
|
|
+ List<Map<String, Object>> result;
|
|
|
+ try (Connection connection = dataSourcePool.getConnection();
|
|
|
+ PreparedStatement preparedStatement = connection.prepareStatement(sql)
|
|
|
+ ) {
|
|
|
+ for (int i = 0; i < args.length; i++) {
|
|
|
+ preparedStatement.setObject(i + 1, args[i]);
|
|
|
+ }
|
|
|
+ ResultSet resultSet = preparedStatement.executeQuery();
|
|
|
+ result = getResult(connectionStr, sql, resultSet);
|
|
|
+ } catch (Exception exception) {
|
|
|
+ throw new RuntimeException("数据异常: %s\n sql: %s ;\n args: %s ".formatted(exception.getMessage(), sql, DataFormatUtil.toDate(args)));
|
|
|
+ }
|
|
|
|
|
|
- HikariPool dataSourcePool = getDataSourcePool(connectionStr);
|
|
|
- List<Map<String, Object>> result;
|
|
|
- try (Connection connection = dataSourcePool.getConnection();
|
|
|
- PreparedStatement preparedStatement = connection.prepareStatement(sql)
|
|
|
- ) {
|
|
|
- for (int i = 0; i < args.length; i++) {
|
|
|
- preparedStatement.setObject(i + 1, args[i]);
|
|
|
+ String querySql = """
|
|
|
+ select
|
|
|
+ datacacheid, connectset, querysql, querytable, effectiveduration, datacachedescribe
|
|
|
+ from datacache""";
|
|
|
+ if (!Objects.equals(querySql, sql)) {
|
|
|
+ cacheConfigList = query(Config.getCenterConnectionStr(), querySql);
|
|
|
}
|
|
|
- ResultSet resultSet = preparedStatement.executeQuery();
|
|
|
- result = getResult(connectionStr, sql, resultSet);
|
|
|
- } catch (Exception exception) {
|
|
|
- throw new RuntimeException("数据异常: %s\n sql: %s ;\n args: %s ".formatted(exception.getMessage(), sql, DataFormatUtil.toDate(args)));
|
|
|
- }
|
|
|
+ saveCacheData(connectionStr, sql, key, effectivedurationColumnName, result);
|
|
|
+ return result;
|
|
|
|
|
|
- String querySql = """
|
|
|
- select
|
|
|
- datacacheid, connectset, querysql, querytable, effectiveduration, datacachedescribe
|
|
|
- from datacache""";
|
|
|
- if (!Objects.equals(querySql, sql)) {
|
|
|
- cacheConfigList = query(Config.getCenterConnectionStr(), querySql);
|
|
|
- }
|
|
|
- saveCacheData(connectionStr, sql, key, effectivedurationColumnName, result);
|
|
|
- return result;
|
|
|
}
|
|
|
|
|
|
public int[] updateBatch(String connectionStr, String sql, List<Object[]> argsList) throws Exception {
|