|
@@ -1,8 +1,5 @@
|
|
|
package com.scbfkj.uni.service;
|
|
|
|
|
|
-import com.fasterxml.jackson.core.JsonProcessingException;
|
|
|
-import com.fasterxml.jackson.databind.JsonNode;
|
|
|
-import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
|
import com.jayway.jsonpath.JsonPath;
|
|
|
import com.scbfkj.uni.library.DataFormatUtil;
|
|
|
import com.scbfkj.uni.library.UniReturnUtil;
|
|
@@ -10,10 +7,12 @@ import com.scbfkj.uni.process.DataBase;
|
|
|
import com.scbfkj.uni.process.Elasticsearch;
|
|
|
import com.scbfkj.uni.process.Kafka;
|
|
|
import com.scbfkj.uni.system.Config;
|
|
|
+import com.zaxxer.hikari.pool.HikariPool;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.io.File;
|
|
|
import java.io.FileNotFoundException;
|
|
|
+import java.sql.*;
|
|
|
import java.time.LocalDateTime;
|
|
|
import java.util.*;
|
|
|
|
|
@@ -25,122 +24,66 @@ public class LoggerService {
|
|
|
|
|
|
private static Map<String, Integer> flag = new HashMap<>();
|
|
|
|
|
|
-
|
|
|
- // 应用
|
|
|
- public static void logInterface(String appId, String ip, String requestPath, String sessionId, String requestData, String returnData, String returnCode, String returnMessage, String lifecycleId) {
|
|
|
- try {
|
|
|
- String tableName = "interfacelog";
|
|
|
- String connectionStr = getCurrentThreadConnection(tableName);
|
|
|
-
|
|
|
- HashMap<String, Object> data = new HashMap<>();
|
|
|
- data.put("applicationid", appId);
|
|
|
- data.put("requesttime", LocalDateTime.now());
|
|
|
- data.put("requestip", ip);
|
|
|
- data.put("requestpath", requestPath);
|
|
|
- data.put("sessionid", sessionId);
|
|
|
- data.put("requestdata", requestData);
|
|
|
- data.put("returndata", returnData);
|
|
|
- data.put("returncode", returnCode);
|
|
|
- data.put("returnmessage", returnMessage);
|
|
|
- data.put("lifecycleid", lifecycleId);
|
|
|
- DataBase.exec(connectionStr, tableName, Collections.singletonList(data), "1", null, null);
|
|
|
-
|
|
|
- } catch (Exception e) {
|
|
|
- throw new RuntimeException(e);
|
|
|
- }
|
|
|
+ //写日志方法:log()--提供给程序内部使用
|
|
|
+ //用户操作日志
|
|
|
+ public static void logUser(LocalDateTime requestTime, String requestIP, String requestPath
|
|
|
+ , String requestData, String sessionID, LocalDateTime returnDate
|
|
|
+ , String returnData, String returnCode, String returnMessage
|
|
|
+ , String dataObjectID, String applicationID, String userID) {
|
|
|
+ //调用工具类的获取雪花编号getUniqueNumber(时间戳+当前容器编号+0)
|
|
|
+ //打开雪花编号对应的临时Sqlite(日志文件夹下)
|
|
|
+ //写入数据
|
|
|
}
|
|
|
|
|
|
- public static void logService(String ip, String requestPath, String sessionId, String requestData, String returnData, String returnCode, String returnMessage, String lifecycleId) {
|
|
|
- try {
|
|
|
- String tableName = "servicelog";
|
|
|
- String connectionStr = getCurrentThreadConnection(tableName);
|
|
|
-
|
|
|
- HashMap<String, Object> data = new HashMap<>();
|
|
|
- data.put("requesttime", LocalDateTime.now());
|
|
|
- data.put("requestip", ip);
|
|
|
- data.put("requestpath", requestPath);
|
|
|
- data.put("sessionid", sessionId);
|
|
|
- data.put("requestdata", requestData);
|
|
|
- data.put("returndata", returnData);
|
|
|
- data.put("returncode", returnCode);
|
|
|
- data.put("returnmessage", returnMessage);
|
|
|
- data.put("lifecycleid", lifecycleId);
|
|
|
- DataBase.exec(connectionStr, tableName, Collections.singletonList(data), "1", null, null);
|
|
|
-
|
|
|
- } catch (Exception e) {
|
|
|
- throw new RuntimeException(e);
|
|
|
- }
|
|
|
-
|
|
|
+ //接口日志
|
|
|
+ public static void logInterface(LocalDateTime requestTime, String requestIP, String requestPath
|
|
|
+ , String requestData, String sessionID, LocalDateTime returnDate
|
|
|
+ , String returnData, String returnCode, String returnMessage
|
|
|
+ , String dataObjectID, String applicationID) {
|
|
|
+ //
|
|
|
+ //调用工具类的获取雪花编号getUniqueNumber(时间戳+当前容器编号+0)
|
|
|
+ //打开雪花编号对应的临时Sqlite(日志文件夹下)
|
|
|
+ //写入数据
|
|
|
}
|
|
|
|
|
|
- public static void logServiceError(String ip, String requestPath, String sessionId, String requestData, String returnData, String returnCode, String returnMessage, String lifecycleId) {
|
|
|
- try {
|
|
|
- String tableName = "serviceerrlog";
|
|
|
- String connectionStr = getCurrentThreadConnection(tableName);
|
|
|
-
|
|
|
- HashMap<String, Object> data = new HashMap<>();
|
|
|
- data.put("requesttime", LocalDateTime.now());
|
|
|
- data.put("requestip", ip);
|
|
|
- data.put("requestpath", requestPath);
|
|
|
- data.put("sessionid", sessionId);
|
|
|
- data.put("requestdata", requestData);
|
|
|
- data.put("returndata", returnData);
|
|
|
- data.put("returncode", returnCode);
|
|
|
- data.put("returnmessage", returnMessage);
|
|
|
- data.put("lifecycleid", lifecycleId);
|
|
|
- DataBase.exec(connectionStr, tableName, Collections.singletonList(data), "1", null, null);
|
|
|
-
|
|
|
- } catch (Exception e) {
|
|
|
- throw new RuntimeException(e);
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
+ /**
|
|
|
+ * @param beginTime 算法开始时间
|
|
|
+ * @param serviceID 服务id
|
|
|
+ * @param resource 算法数据历史
|
|
|
+ * @param requestData 入参
|
|
|
+ * @param endTime 算法结束时间
|
|
|
+ * @param returnData 算法执行结果
|
|
|
+ * @param returnCode 算法结果成功失败编号
|
|
|
+ * @param returnMessage 算法失败错误消息
|
|
|
+ * @param dataObjectID 数据声明周期
|
|
|
+ */
|
|
|
+ //服务日志
|
|
|
+ public static void logService(LocalDateTime beginTime, String serviceID, String resource, String requestData,
|
|
|
+ LocalDateTime endTime, String returnData,
|
|
|
+ String returnCode, String returnMessage
|
|
|
+ , String dataObjectID) {
|
|
|
+ //调用工具类的获取雪花编号getUniqueNumber(时间戳+当前容器编号+0)
|
|
|
+ //打开雪花编号对应的临时Sqlite(日志文件夹下)
|
|
|
+ //写入数据
|
|
|
|
|
|
- public static void logSystemError(String ip, String requestPath, String sessionId, String requestData, String returnData, String returnCode, String returnMessage) {
|
|
|
try {
|
|
|
- String tableName = "systemerrlog";
|
|
|
+ String tableName = "servicelog";
|
|
|
String connectionStr = getCurrentThreadConnection(tableName);
|
|
|
-
|
|
|
- HashMap<String, Object> data = new HashMap<>();
|
|
|
- data.put("requesttime", LocalDateTime.now());
|
|
|
- data.put("requestip", ip);
|
|
|
- data.put("requestpath", requestPath);
|
|
|
- data.put("sessionid", sessionId);
|
|
|
- data.put("requestdata", requestData);
|
|
|
- data.put("returndata", returnData);
|
|
|
- data.put("returncode", returnCode);
|
|
|
- data.put("returnmessage", returnMessage);
|
|
|
- DataBase.exec(connectionStr, tableName, Collections.singletonList(data), "1", null, null);
|
|
|
-
|
|
|
+ if (!Objects.equals(returnCode, "0")) {
|
|
|
+ tableName = "serviceerrlog";
|
|
|
+ }
|
|
|
+ insertLog(connectionStr, "insert into %s ('begintime','endtime','serviceid','resource','requestdata','returndata','returncode','returnmessage','lifecycleid') values (?,?,?,?,?,?,?,?,?)".formatted(tableName), List.of(beginTime, endTime, serviceID, resource, requestData, requestData, returnCode, returnMessage, dataObjectID));
|
|
|
} catch (Exception e) {
|
|
|
throw new RuntimeException(e);
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
|
|
|
- public static void logUser(String userId, String appId, String ip, String requestPath, String sessionId, String requestData, String returnData, String returnCode, String returnMessage, String lifecycleId) {
|
|
|
-
|
|
|
- try {
|
|
|
- String tableName = "userlog";
|
|
|
- String connectionStr = getCurrentThreadConnection(tableName);
|
|
|
-
|
|
|
- HashMap<String, Object> data = new HashMap<>();
|
|
|
- data.put("applicationid", appId);
|
|
|
- data.put("requesttime", LocalDateTime.now());
|
|
|
- data.put("requestip", ip);
|
|
|
- data.put("requestpath", requestPath);
|
|
|
- data.put("sessionid", sessionId);
|
|
|
- data.put("requestdata", requestData);
|
|
|
- data.put("returndata", returnData);
|
|
|
- data.put("returncode", returnCode);
|
|
|
- data.put("returnmessage", returnMessage);
|
|
|
- data.put("lifecycleid", lifecycleId);
|
|
|
- data.put("userid", userId);
|
|
|
- DataBase.exec(connectionStr, tableName, Collections.singletonList(data), "1", null, null);
|
|
|
-
|
|
|
- } catch (Exception e) {
|
|
|
- throw new RuntimeException(e);
|
|
|
- }
|
|
|
+ //系统异常日志
|
|
|
+ public static void logSystemError(LocalDateTime occurrenceTime, String occurrenceAddress
|
|
|
+ , String detailedMessage) {
|
|
|
+ //调用工具类的获取雪花编号getUniqueNumber(时间戳+当前容器编号+0)
|
|
|
+ //打开雪花编号对应的临时Sqlite(日志文件夹下)
|
|
|
+ //写入数据
|
|
|
}
|
|
|
|
|
|
private static String getCurrentThreadConnection(String targetName) throws Exception {
|
|
@@ -160,17 +103,18 @@ public class LoggerService {
|
|
|
CREATE TABLE interfacelog (
|
|
|
|
|
|
logid Integer
|
|
|
- primary key autoincrement,
|
|
|
- requesttime DATETIME,
|
|
|
- requestip VARCHAR(255),
|
|
|
- requestpath VARCHAR(255),
|
|
|
- requestdata TEXT,
|
|
|
- sessionid VARCHAR(255),
|
|
|
- returndata TEXT,
|
|
|
- returncode INT,
|
|
|
- returnmessage TEXT,
|
|
|
- applicationid INT,
|
|
|
- lifecycleid INT
|
|
|
+ primary key auto_increment,
|
|
|
+ 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")) {
|
|
@@ -178,16 +122,16 @@ public class LoggerService {
|
|
|
CREATE TABLE servicelog (
|
|
|
|
|
|
logid Integer
|
|
|
- primary key autoincrement,
|
|
|
- requesttime DATETIME,
|
|
|
- requestip VARCHAR(255),
|
|
|
- requestpath VARCHAR(255),
|
|
|
+ primary key auto_increment,
|
|
|
+ begintime DATETIME,
|
|
|
+ endtime DATETIME,
|
|
|
+ serviceid TEXT,
|
|
|
+ resource TEXT,
|
|
|
requestdata TEXT,
|
|
|
- sessionid VARCHAR(255),
|
|
|
returndata TEXT,
|
|
|
- returncode INT,
|
|
|
+ returncode TEXT,
|
|
|
returnmessage TEXT,
|
|
|
- lifecycleid INT
|
|
|
+ lifecycleid TEXT
|
|
|
)
|
|
|
""";
|
|
|
} else if (targetName.equals("serviceerrlog")) {
|
|
@@ -195,16 +139,16 @@ public class LoggerService {
|
|
|
CREATE TABLE serviceerrlog (
|
|
|
|
|
|
logid Integer
|
|
|
- primary key autoincrement,
|
|
|
- requesttime DATETIME,
|
|
|
- requestip VARCHAR(255),
|
|
|
- requestpath VARCHAR(255),
|
|
|
+ primary key auto_increment,
|
|
|
+ begintime DATETIME,
|
|
|
+ endtime DATETIME,
|
|
|
+ serviceid TEXT,
|
|
|
+ resource TEXT,
|
|
|
requestdata TEXT,
|
|
|
- sessionid VARCHAR(255),
|
|
|
returndata TEXT,
|
|
|
- returncode INT,
|
|
|
+ returncode TEXT,
|
|
|
returnmessage TEXT,
|
|
|
- lifecycleid INT
|
|
|
+ lifecycleid TEXT
|
|
|
)
|
|
|
""";
|
|
|
} else if (targetName.equals("systemerrlog")) {
|
|
@@ -212,42 +156,43 @@ public class LoggerService {
|
|
|
create table systemerrlog
|
|
|
(
|
|
|
logid Integer
|
|
|
- primary key autoincrement,
|
|
|
- requesttime DATETIME,
|
|
|
- requestip VARCHAR(255),
|
|
|
- requestpath VARCHAR(255),
|
|
|
- requestdata TEXT,
|
|
|
- sessionid VARCHAR(255),
|
|
|
- returndata TEXT,
|
|
|
- returncode INT,
|
|
|
- returnmessage TEXT,
|
|
|
- lifecycleid INT
|
|
|
+ primary key auto_increment,
|
|
|
+ occurrencetime DATETIME,
|
|
|
+ occurrenceaddress TEXT,
|
|
|
+ detailedmessage TEXT
|
|
|
);
|
|
|
|
|
|
|
|
|
""";
|
|
|
} else if (targetName.equals("userlog")) {
|
|
|
sql = """
|
|
|
- CREATE TABLE userdolog (
|
|
|
+ CREATE TABLE userlog (
|
|
|
|
|
|
logid Integer
|
|
|
- primary key autoincrement,
|
|
|
- requesttime DATETIME,
|
|
|
- requestip VARCHAR(255),
|
|
|
- requestpath VARCHAR(255),
|
|
|
- requestdata TEXT,
|
|
|
- sessionid VARCHAR(255),
|
|
|
- returndata TEXT,
|
|
|
- returncode INT,
|
|
|
- returnmessage TEXT,
|
|
|
- applicationid INT,
|
|
|
- userid INT,
|
|
|
- lifecycleid INT
|
|
|
+ primary key auto_increment,
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
return newConnection;
|
|
|
}
|
|
@@ -278,11 +223,9 @@ public class LoggerService {
|
|
|
}
|
|
|
|
|
|
}
|
|
|
- List<String> targets = Config.targets;
|
|
|
-
|
|
|
// 删除成功的日志
|
|
|
if (!result.isEmpty()) {
|
|
|
- for (String target : targets) {
|
|
|
+ for (String target : Config.targets) {
|
|
|
Object type = JsonPath.read(target, "$.type");
|
|
|
if (Objects.isNull(type)) throw new RuntimeException("日志输出目标类型没有配置");
|
|
|
switch (type.toString()) {
|
|
@@ -332,5 +275,37 @@ public class LoggerService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ private static void insertLog(String connection, String sql, List<Object> args) {
|
|
|
+ try (
|
|
|
+ Connection connect = createConnection(connection);
|
|
|
+ PreparedStatement preparedStatement = connect.prepareStatement(sql)) {
|
|
|
+ for (int i = 0; i < args.size(); i++) {
|
|
|
+ preparedStatement.setObject(i + 1, args.get(i));
|
|
|
+ }
|
|
|
+ preparedStatement.executeUpdate();
|
|
|
+ } catch (SQLException e) {
|
|
|
+ throw new RuntimeException(e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private List<Map<String, Object>> query(String connection, String sql) {
|
|
|
+ try (
|
|
|
+ Connection connect = createConnection(connection);
|
|
|
+ PreparedStatement preparedStatement = connect.prepareStatement(sql)) {
|
|
|
+
|
|
|
+ ResultSet resultSet = preparedStatement.executeQuery();
|
|
|
+ return DataBase.getResult(connection, sql, resultSet);
|
|
|
+ } catch (SQLException e) {
|
|
|
+ throw new RuntimeException(e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private static Connection createConnection(String connection) throws SQLException {
|
|
|
+ Map<?, ?> map = DataFormatUtil.toMap(connection);
|
|
|
+ String jdbcUrl = DataFormatUtil.toString(map.get("jdbcUrl"));
|
|
|
+ String driverClassName = DataFormatUtil.toString(map.get("driverClassName"));
|
|
|
+ Driver driver = DriverManager.getDriver(driverClassName);
|
|
|
+ return driver.connect(jdbcUrl, null);
|
|
|
+ }
|
|
|
|
|
|
}
|