|
@@ -8,7 +8,9 @@ import com.scbfkj.uni.process.DataBase;
|
|
import com.scbfkj.uni.process.Elasticsearch;
|
|
import com.scbfkj.uni.process.Elasticsearch;
|
|
import com.scbfkj.uni.process.Kafka;
|
|
import com.scbfkj.uni.process.Kafka;
|
|
import com.scbfkj.uni.system.Config;
|
|
import com.scbfkj.uni.system.Config;
|
|
|
|
+import org.springframework.core.io.ClassPathResource;
|
|
import org.springframework.stereotype.Component;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
+import org.springframework.util.FileCopyUtils;
|
|
|
|
|
|
import java.io.File;
|
|
import java.io.File;
|
|
import java.io.FileNotFoundException;
|
|
import java.io.FileNotFoundException;
|
|
@@ -19,11 +21,10 @@ import java.util.*;
|
|
@Component
|
|
@Component
|
|
public class LoggerService {
|
|
public class LoggerService {
|
|
|
|
|
|
- private static String logConnection = """
|
|
|
|
- {"jdbcUrl":"jdbc:sqlite:logs/log_","driverClassName":"org.sqlite.JDBC"}""";
|
|
|
|
|
|
|
|
private static Map<String, Integer> flag = new HashMap<>();
|
|
private static Map<String, Integer> flag = new HashMap<>();
|
|
|
|
|
|
|
|
+
|
|
//写日志方法:log()--提供给程序内部使用
|
|
//写日志方法:log()--提供给程序内部使用
|
|
//用户操作日志
|
|
//用户操作日志
|
|
public static void logUser(LocalDateTime requestTime, String requestIP, String requestPath
|
|
public static void logUser(LocalDateTime requestTime, String requestIP, String requestPath
|
|
@@ -64,20 +65,20 @@ public class LoggerService {
|
|
//调用工具类的获取雪花编号getUniqueNumber(时间戳+当前容器编号+0)
|
|
//调用工具类的获取雪花编号getUniqueNumber(时间戳+当前容器编号+0)
|
|
//打开雪花编号对应的临时Sqlite(日志文件夹下)
|
|
//打开雪花编号对应的临时Sqlite(日志文件夹下)
|
|
//写入数据
|
|
//写入数据
|
|
-//
|
|
|
|
-// try {
|
|
|
|
-// String tableName = "servicelog";
|
|
|
|
-// String connectionStr = getCurrentThreadConnection(tableName);
|
|
|
|
-// if (!Objects.equals(returnCode, "0")) {
|
|
|
|
-// tableName = "serviceerrlog";
|
|
|
|
-// }
|
|
|
|
-//// insertLog(connectionStr,
|
|
|
|
-//// "insert into %s ('begintime','endtime','serviceid','resource','preresource','returncode','returnmessage','lifecycleid') values (?,?,?,?,?,?,?,?,?)".formatted(tableName),
|
|
|
|
-//// List.of(beginTime, endTime, serviceID, resource, preResource, returnCode, returnMessage, dataObjectID));
|
|
|
|
-// } catch (Exception e) {
|
|
|
|
-// e.printStackTrace();
|
|
|
|
-// System.out.println(UniReturnUtil.getMessage(e));
|
|
|
|
-// }
|
|
|
|
|
|
+
|
|
|
|
+ try {
|
|
|
|
+ String tableName = "servicelog";
|
|
|
|
+ String connectionStr = getTimeConnection();
|
|
|
|
+ if (!Objects.equals(returnCode, "0")) {
|
|
|
|
+ tableName = "serviceerrlog";
|
|
|
|
+ }
|
|
|
|
+ insertLog(connectionStr,
|
|
|
|
+ "insert into %s ('begintime','endtime','serviceid','resource','preresource','returncode','returnmessage','lifecycleid') values (?,?,?,?,?,?,?,?,?)".formatted(tableName),
|
|
|
|
+ List.of(beginTime, endTime, serviceID, resource, preResource, returnCode, returnMessage, dataObjectID));
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ e.printStackTrace();
|
|
|
|
+ System.out.println(UniReturnUtil.getMessage(e));
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
//系统异常日志
|
|
//系统异常日志
|
|
@@ -89,7 +90,7 @@ public class LoggerService {
|
|
|
|
|
|
try {
|
|
try {
|
|
String tableName = "systemerrlog";
|
|
String tableName = "systemerrlog";
|
|
- String connectionStr = getCurrentThreadConnection(tableName);
|
|
|
|
|
|
+ String connectionStr = getTimeConnection();
|
|
insertLog(connectionStr,
|
|
insertLog(connectionStr,
|
|
"insert into %s ('occurrenceTime','occurrenceAddress','detailedMessage') values (?,?,?)".formatted(tableName),
|
|
"insert into %s ('occurrenceTime','occurrenceAddress','detailedMessage') values (?,?,?)".formatted(tableName),
|
|
List.of(occurrenceTime, occurrenceAddress, detailedMessage));
|
|
List.of(occurrenceTime, occurrenceAddress, detailedMessage));
|
|
@@ -98,10 +99,12 @@ public class LoggerService {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- private static String getCurrentThreadConnection(String targetName) throws Exception {
|
|
|
|
- long id = Thread.currentThread().getId();
|
|
|
|
|
|
+ private synchronized static String getTimeConnection() throws Exception {
|
|
|
|
+ long timeMillis = System.currentTimeMillis();
|
|
|
|
+ long name = timeMillis / Config.splitCount;
|
|
|
|
+
|
|
|
|
|
|
- String fileName = "logs" + File.separator + "log_" + id + "_" + targetName;
|
|
|
|
|
|
+ String fileName = "logs" + File.separator + name + ".sqlite";
|
|
File file = new File(fileName);
|
|
File file = new File(fileName);
|
|
HashMap<String, Object> connectionMap = new HashMap<>();
|
|
HashMap<String, Object> connectionMap = new HashMap<>();
|
|
|
|
|
|
@@ -109,187 +112,94 @@ public class LoggerService {
|
|
connectionMap.put("driverClassName", "org.sqlite.JDBC");
|
|
connectionMap.put("driverClassName", "org.sqlite.JDBC");
|
|
String newConnection = DataFormatUtil.toString(connectionMap);
|
|
String newConnection = DataFormatUtil.toString(connectionMap);
|
|
if (!file.exists()) {
|
|
if (!file.exists()) {
|
|
- String sql = null;
|
|
|
|
- if (targetName.equals("interfacelog")) {
|
|
|
|
- sql = """
|
|
|
|
- CREATE TABLE interfacelog (
|
|
|
|
-
|
|
|
|
- logid Integer
|
|
|
|
- primary key autoincrement,
|
|
|
|
- requesttime DATETIME,
|
|
|
|
- requestip TEXT,
|
|
|
|
- requestpath TEXT,
|
|
|
|
- requestdata TEXT,
|
|
|
|
- sessionid TEXT,
|
|
|
|
- returndate DATETIME,
|
|
|
|
- returndata TEXT,
|
|
|
|
- returncode TEXT,
|
|
|
|
- returnmessage TEXT,
|
|
|
|
- dataobjectid TEXT,
|
|
|
|
- applicationid TEXT
|
|
|
|
- )
|
|
|
|
- """;
|
|
|
|
- } else if (targetName.equals("servicelog")) {
|
|
|
|
- sql = """
|
|
|
|
- CREATE TABLE servicelog (
|
|
|
|
-
|
|
|
|
- logid Integer
|
|
|
|
- primary key autoincrement,
|
|
|
|
- begintime DATETIME,
|
|
|
|
- endtime DATETIME,
|
|
|
|
- serviceid TEXT,
|
|
|
|
- resource TEXT,
|
|
|
|
- requestdata TEXT,
|
|
|
|
- returndata TEXT,
|
|
|
|
- returncode TEXT,
|
|
|
|
- returnmessage TEXT,
|
|
|
|
- lifecycleid TEXT
|
|
|
|
- )
|
|
|
|
- """;
|
|
|
|
- } else if (targetName.equals("serviceerrlog")) {
|
|
|
|
- sql = """
|
|
|
|
- CREATE TABLE serviceerrlog (
|
|
|
|
-
|
|
|
|
- logid Integer
|
|
|
|
- primary key autoincrement,
|
|
|
|
- begintime DATETIME,
|
|
|
|
- endtime DATETIME,
|
|
|
|
- serviceid TEXT,
|
|
|
|
- resource TEXT,
|
|
|
|
- requestdata TEXT,
|
|
|
|
- returndata TEXT,
|
|
|
|
- returncode TEXT,
|
|
|
|
- returnmessage TEXT,
|
|
|
|
- lifecycleid TEXT
|
|
|
|
- )
|
|
|
|
- """;
|
|
|
|
- } else if (targetName.equals("systemerrlog")) {
|
|
|
|
- sql = """
|
|
|
|
- create table systemerrlog
|
|
|
|
- (
|
|
|
|
- logid Integer
|
|
|
|
- primary key autoincrement,
|
|
|
|
- occurrencetime DATETIME,
|
|
|
|
- occurrenceaddress TEXT,
|
|
|
|
- detailedmessage TEXT
|
|
|
|
- );
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- """;
|
|
|
|
- } else if (targetName.equals("userlog")) {
|
|
|
|
- sql = """
|
|
|
|
- CREATE TABLE userlog (
|
|
|
|
-
|
|
|
|
- logid Integer
|
|
|
|
- primary key autoincrement,
|
|
|
|
- requesttime DATETIME,
|
|
|
|
- requestip TEXT,
|
|
|
|
- requestpath TEXT,
|
|
|
|
- requestdata TEXT,
|
|
|
|
- sessionid TEXT,
|
|
|
|
- returndate DATETIME,
|
|
|
|
- returndata TEXT,
|
|
|
|
- returncode TEXT,
|
|
|
|
- returnmessage TEXT,
|
|
|
|
- dataobjectid TEXT,
|
|
|
|
- applicationid TEXT,
|
|
|
|
- userid TEXT
|
|
|
|
- )
|
|
|
|
- """;
|
|
|
|
- }
|
|
|
|
-// 创建表结构
|
|
|
|
- DataBase.exec(newConnection, sql);
|
|
|
|
- try (Connection connection = createConnection(newConnection);
|
|
|
|
- Statement statement = connection.createStatement()
|
|
|
|
- ) {
|
|
|
|
- statement.execute(sql);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ ClassPathResource resource = new ClassPathResource("template.sqlite");
|
|
|
|
+ File template = resource.getFile();
|
|
|
|
+ FileCopyUtils.copy(template, file);
|
|
}
|
|
}
|
|
return newConnection;
|
|
return newConnection;
|
|
}
|
|
}
|
|
-
|
|
|
|
- /**
|
|
|
|
- * 读取日志并发送到目标存储介质,最后删除已经发送成功的日志
|
|
|
|
- *
|
|
|
|
- * @param fileName
|
|
|
|
- * @return
|
|
|
|
- */
|
|
|
|
- private static void apply(String fileName) {
|
|
|
|
- String newConnection = logConnection.replace("log_", fileName);
|
|
|
|
- String tableName = fileName.substring(fileName.lastIndexOf("_") + 1);
|
|
|
|
- try {
|
|
|
|
- List<Map<String, Object>> result = DataBase.query(newConnection, "select * from %s where 1=?".formatted(tableName), Collections.singletonList(new Object[]{1}));
|
|
|
|
- if (result.isEmpty()) {
|
|
|
|
- if (!flag.containsKey(fileName)) {
|
|
|
|
- flag.put(fileName, 0);
|
|
|
|
- }
|
|
|
|
- int value = flag.get(fileName) + 1;
|
|
|
|
- if (value > 10) {
|
|
|
|
- new File("logs" + File.separator + fileName).delete();
|
|
|
|
- flag.remove(fileName);
|
|
|
|
- return;
|
|
|
|
- } else {
|
|
|
|
- flag.put(fileName, value);
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- } else {
|
|
|
|
- if (!flag.containsKey(fileName)) {
|
|
|
|
- flag.put(fileName, 0);
|
|
|
|
- }
|
|
|
|
- flag.put(fileName, 0);
|
|
|
|
- }
|
|
|
|
-// 删除成功的日志
|
|
|
|
- if (!result.isEmpty()) {
|
|
|
|
- for (String target : Config.targets) {
|
|
|
|
- Object type = JsonPath.read(target, "$.type");
|
|
|
|
- if (Objects.isNull(type)) throw new RuntimeException("日志输出目标类型没有配置");
|
|
|
|
- switch (type.toString()) {
|
|
|
|
- case "DB" -> {
|
|
|
|
- DatabaseScriptUtil.exec(target, tableName, result, "1", null, null);
|
|
|
|
- }
|
|
|
|
- case "KAFKA" -> {
|
|
|
|
- Kafka.sendMessage(target, tableName, result.stream().map(DataFormatUtil::toString).toList());
|
|
|
|
- }
|
|
|
|
- case "ES" -> {
|
|
|
|
- Elasticsearch.send(target, tableName, result);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- DatabaseScriptUtil.exec(newConnection, tableName, result.stream().map(it -> (Map<String, Object>) new HashMap<String, Object>() {{
|
|
|
|
- put("logid", it.get("logid"));
|
|
|
|
- }}).toList(), "3", null, null);
|
|
|
|
- }
|
|
|
|
- } catch (Exception e) {
|
|
|
|
- System.out.println(UniReturnUtil.getMessage(e));
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public static void sendLog() throws FileNotFoundException {
|
|
|
|
- File logDir = new File("logs");
|
|
|
|
- if (logDir.exists()) {
|
|
|
|
- if (logDir.isDirectory()) {
|
|
|
|
- File[] files = logDir.listFiles();
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- List<File> logs = new ArrayList<>();
|
|
|
|
- if (files != null) {
|
|
|
|
- logs = Arrays.stream(files).toList();
|
|
|
|
- }
|
|
|
|
- logs.parallelStream().forEach(it -> {
|
|
|
|
- String fileName = it.getName();
|
|
|
|
- apply(fileName);
|
|
|
|
- });
|
|
|
|
-
|
|
|
|
- } else {
|
|
|
|
- throw new FileNotFoundException("logs 不是文件夹");
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- throw new FileNotFoundException("日志目录没有找到");
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+//
|
|
|
|
+// /**
|
|
|
|
+// * 读取日志并发送到目标存储介质,最后删除已经发送成功的日志
|
|
|
|
+// *
|
|
|
|
+// * @param fileName
|
|
|
|
+// * @return
|
|
|
|
+// */
|
|
|
|
+// private static void apply(String fileName) {
|
|
|
|
+// String newConnection = logConnection.replace("log_", fileName);
|
|
|
|
+// String tableName = fileName.substring(fileName.lastIndexOf("_") + 1);
|
|
|
|
+// try {
|
|
|
|
+// List<Map<String, Object>> result = DataBase.query(newConnection, "select * from %s where 1=?".formatted(tableName), Collections.singletonList(new Object[]{1}));
|
|
|
|
+// if (result.isEmpty()) {
|
|
|
|
+// if (!flag.containsKey(fileName)) {
|
|
|
|
+// flag.put(fileName, 0);
|
|
|
|
+// }
|
|
|
|
+// int value = flag.get(fileName) + 1;
|
|
|
|
+// if (value > 10) {
|
|
|
|
+// new File("logs" + File.separator + fileName).delete();
|
|
|
|
+// flag.remove(fileName);
|
|
|
|
+// return;
|
|
|
|
+// } else {
|
|
|
|
+// flag.put(fileName, value);
|
|
|
|
+//
|
|
|
|
+// }
|
|
|
|
+//
|
|
|
|
+// } else {
|
|
|
|
+// if (!flag.containsKey(fileName)) {
|
|
|
|
+// flag.put(fileName, 0);
|
|
|
|
+// }
|
|
|
|
+// flag.put(fileName, 0);
|
|
|
|
+// }
|
|
|
|
+//// 删除成功的日志
|
|
|
|
+// if (!result.isEmpty()) {
|
|
|
|
+// for (String target : Config.targets) {
|
|
|
|
+// Object type = JsonPath.read(target, "$.type");
|
|
|
|
+// if (Objects.isNull(type)) throw new RuntimeException("日志输出目标类型没有配置");
|
|
|
|
+// switch (type.toString()) {
|
|
|
|
+// case "DB" -> {
|
|
|
|
+// DatabaseScriptUtil.exec(target, tableName, result, "1", null, null);
|
|
|
|
+// }
|
|
|
|
+// case "KAFKA" -> {
|
|
|
|
+// Kafka.sendMessage(target, tableName, result.stream().map(DataFormatUtil::toString).toList());
|
|
|
|
+// }
|
|
|
|
+// case "ES" -> {
|
|
|
|
+// Elasticsearch.send(target, tableName, result);
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+// DatabaseScriptUtil.exec(newConnection, tableName, result.stream().map(it -> (Map<String, Object>) new HashMap<String, Object>() {{
|
|
|
|
+// put("logid", it.get("logid"));
|
|
|
|
+// }}).toList(), "3", null, null);
|
|
|
|
+// }
|
|
|
|
+// } catch (Exception e) {
|
|
|
|
+// System.out.println(UniReturnUtil.getMessage(e));
|
|
|
|
+// }
|
|
|
|
+//
|
|
|
|
+// }
|
|
|
|
+//
|
|
|
|
+// public static void sendLog() throws FileNotFoundException {
|
|
|
|
+// File logDir = new File("logs");
|
|
|
|
+// if (logDir.exists()) {
|
|
|
|
+// if (logDir.isDirectory()) {
|
|
|
|
+// File[] files = logDir.listFiles();
|
|
|
|
+//
|
|
|
|
+//
|
|
|
|
+// List<File> logs = new ArrayList<>();
|
|
|
|
+// if (files != null) {
|
|
|
|
+// logs = Arrays.stream(files).toList();
|
|
|
|
+// }
|
|
|
|
+// logs.parallelStream().forEach(it -> {
|
|
|
|
+// String fileName = it.getName();
|
|
|
|
+// apply(fileName);
|
|
|
|
+// });
|
|
|
|
+//
|
|
|
|
+// } else {
|
|
|
|
+// throw new FileNotFoundException("logs 不是文件夹");
|
|
|
|
+// }
|
|
|
|
+// } else {
|
|
|
|
+// throw new FileNotFoundException("日志目录没有找到");
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
|
|
private static void insertLog(String connection, String sql, List<Object> args) {
|
|
private static void insertLog(String connection, String sql, List<Object> args) {
|
|
try (
|
|
try (
|
|
@@ -299,7 +209,7 @@ public class LoggerService {
|
|
preparedStatement.setObject(i + 1, args.get(i));
|
|
preparedStatement.setObject(i + 1, args.get(i));
|
|
}
|
|
}
|
|
preparedStatement.executeUpdate();
|
|
preparedStatement.executeUpdate();
|
|
- } catch (SQLException e) {
|
|
|
|
|
|
+ } catch (SQLException | ClassNotFoundException e) {
|
|
throw new RuntimeException(e);
|
|
throw new RuntimeException(e);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -311,17 +221,17 @@ public class LoggerService {
|
|
|
|
|
|
ResultSet resultSet = preparedStatement.executeQuery();
|
|
ResultSet resultSet = preparedStatement.executeQuery();
|
|
return DataBase.getResult(connection, sql, resultSet);
|
|
return DataBase.getResult(connection, sql, resultSet);
|
|
- } catch (SQLException e) {
|
|
|
|
|
|
+ } catch (SQLException | ClassNotFoundException e) {
|
|
throw new RuntimeException(e);
|
|
throw new RuntimeException(e);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- private static Connection createConnection(String connection) throws SQLException {
|
|
|
|
|
|
+ private static Connection createConnection(String connection) throws SQLException, ClassNotFoundException {
|
|
Map<?, ?> map = DataFormatUtil.toMap(connection);
|
|
Map<?, ?> map = DataFormatUtil.toMap(connection);
|
|
String jdbcUrl = DataFormatUtil.toString(map.get("jdbcUrl"));
|
|
String jdbcUrl = DataFormatUtil.toString(map.get("jdbcUrl"));
|
|
String driverClassName = DataFormatUtil.toString(map.get("driverClassName"));
|
|
String driverClassName = DataFormatUtil.toString(map.get("driverClassName"));
|
|
- Driver driver = DriverManager.getDriver(driverClassName);
|
|
|
|
- return driver.connect(jdbcUrl, null);
|
|
|
|
|
|
+ Class.forName(driverClassName);
|
|
|
|
+ Driver driver = DriverManager.getDriver(jdbcUrl);
|
|
|
|
+ return driver.connect(jdbcUrl, new Properties());
|
|
}
|
|
}
|
|
-
|
|
|
|
}
|
|
}
|