|
@@ -4,10 +4,14 @@ import org.bfkj.application.DataProcess;
|
|
|
import org.bfkj.application.ServiceInputControl;
|
|
|
import org.bfkj.config.AppConfig;
|
|
|
import org.bfkj.config.ObjectMap;
|
|
|
+import org.bfkj.config.RemoteDB;
|
|
|
+import org.bfkj.config.RemoteLogDB;
|
|
|
import org.bfkj.utils.LogUtils;
|
|
|
import org.bfkj.utils.MapTools;
|
|
|
import org.bfkj.utils.MyDbHelper;
|
|
|
import org.bfkj.utils.ScheduleUtil;
|
|
|
+import org.springframework.beans.factory.InitializingBean;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
|
@@ -25,11 +29,15 @@ import java.util.*;
|
|
|
|
|
|
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
|
|
|
@EnableScheduling
|
|
|
-public class MainFactoryApplication {
|
|
|
+public class MainFactoryApplication implements InitializingBean {
|
|
|
|
|
|
- private final String INSERT_SQL = "INSERT INTO log_success_a ( success, location, logContent, createtime, serviceId, workId, event, iNDataContent, outDataContent, calculationLocation, dataObjectId) VALUES (?,?,?,?,?,?,?,?,?,?,?)";
|
|
|
- private final String ERROR_SQL = "INSERT INTO log_error_a ( success, location, logContent, createtime, serviceId, workId, event, iNDataContent, outDataContent, calculationLocation, dataObjectId) VALUES (?,?,?,?,?,?,?,?,?,?,?)";
|
|
|
- private final String FULL_DATA_SQL = "INSERT INTO log_fulldata_a ( dataObjectId, FULL_DATA_SQL) VALUES (?,?)";
|
|
|
+ private final String INSERT_SQL = "INSERT INTO log_success ( success, location, logContent, createtime, serviceId, workId, event, iNDataContent, outDataContent, calculationLocation, dataObjectId) VALUES (?,?,?,?,?,?,?,?,?,?,?)";
|
|
|
+ private final String ERROR_SQL = "INSERT INTO log_error ( success, location, logContent, createtime, serviceId, workId, event, iNDataContent, outDataContent, calculationLocation, dataObjectId) VALUES (?,?,?,?,?,?,?,?,?,?,?)";
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private RemoteDB remoteDB;
|
|
|
+ @Autowired
|
|
|
+ private RemoteLogDB remoteLogDB;
|
|
|
|
|
|
/*服务初始化: 启动服务*/
|
|
|
public static void main(String[] args) {
|
|
@@ -38,14 +46,10 @@ public class MainFactoryApplication {
|
|
|
System.out.println("配置文件夹检测失败");
|
|
|
return;
|
|
|
}
|
|
|
+ /*获取初始地址*/
|
|
|
Map<String, String> systemDefaultParams = getSystemDefaultParams(path);
|
|
|
ConfigurableApplicationContext context = SpringApplication.run(MainFactoryApplication.class, args);
|
|
|
Environment env = context.getBean(Environment.class);
|
|
|
-
|
|
|
- Map<String, String> configByEnvironment = getConfigByEnvironment(env);
|
|
|
- if (!configByEnvironment.isEmpty()) {
|
|
|
- systemDefaultParams.putAll(configByEnvironment);
|
|
|
- }
|
|
|
String systemParams = env.getProperty("systemParams");
|
|
|
if (Objects.nonNull(systemParams) && !"".equals(systemParams)) {
|
|
|
Map<String, Object> inSystemParams = (Map<String, Object>) MapTools.strToObj(systemParams);
|
|
@@ -57,15 +61,11 @@ public class MainFactoryApplication {
|
|
|
systemDefaultParams.put(key, keyValue);
|
|
|
}
|
|
|
}
|
|
|
+ /*设置远程连接、服务地址*/
|
|
|
+ AppConfig.serviceURL = systemDefaultParams.get("serviceURL");
|
|
|
+ AppConfig.REMOTE_DB_CONNECT = systemDefaultParams.get("remote_db_connect");
|
|
|
}
|
|
|
- //调用接口,更新系统参数(AppConfig类中的方法)
|
|
|
- AppConfig.setSystemParameters(systemDefaultParams);
|
|
|
- //初始化本地日志数据库
|
|
|
- if (!LocalInitDB()) {
|
|
|
- System.out.println("初始化本地日志数据库失败");
|
|
|
- return;
|
|
|
- }
|
|
|
- MyDbHelper myDbHelper = ObjectMap.getordropMyDbHelper(AppConfig.getSystemParams(AppConfig.REMOTE_DB_CONNECT));
|
|
|
+ MyDbHelper myDbHelper = ObjectMap.getordropMyDbHelper(AppConfig.REMOTE_DB_CONNECT);
|
|
|
if (Objects.nonNull(myDbHelper.getErrorMessage())) {
|
|
|
System.out.println("初始化获取MyDbHelper对象异常");
|
|
|
return;
|
|
@@ -75,9 +75,8 @@ public class MainFactoryApplication {
|
|
|
return;
|
|
|
}
|
|
|
Runtime.getRuntime().addShutdownHook(new Thread(MainFactoryApplication::currentWorkExit));
|
|
|
- String serviceURL = AppConfig.getSystemParams("serviceURL");
|
|
|
try {
|
|
|
- Map<String, String> hasDeployNodeIDMap = myDbHelper.queryForObject("select Max(deployNodeID) from deploynode where serviceURL = ? ", serviceURL);
|
|
|
+ Map<String, String> hasDeployNodeIDMap = myDbHelper.queryForObject("select Max(deployNodeID) from deploynode where serviceURL = ? ", AppConfig.serviceURL);
|
|
|
if (hasDeployNodeIDMap.get("code").equals("-1")) {
|
|
|
System.out.println("初始化获取机器表信息: 执行SQL失败 " + hasDeployNodeIDMap.get("message"));
|
|
|
return;
|
|
@@ -86,9 +85,9 @@ public class MainFactoryApplication {
|
|
|
if (!"".equals(workID) && !"0".equals(workID)) {
|
|
|
AppConfig.WORK_ID = workID;
|
|
|
} else {
|
|
|
- Map<String, String> returnKeyValues = myDbHelper.insertReturnKeyValues("insert into deploynode(serviceURL) values(?)", serviceURL);
|
|
|
+ Map<String, String> returnKeyValues = myDbHelper.insertReturnKeyValues("insert into deploynode(serviceURL) values(?)", AppConfig.serviceURL);
|
|
|
if (returnKeyValues.get("code").equals("-1")) {
|
|
|
- System.out.println("根据serviceURL新增入库失败: " + ("insert into deploynode(serviceURL) values(?)") + " 参数: " + serviceURL);
|
|
|
+ System.out.println("根据serviceURL新增入库失败: " + ("insert into deploynode(serviceURL) values(?)") + " 参数: " + AppConfig.serviceURL);
|
|
|
return;
|
|
|
}
|
|
|
AppConfig.WORK_ID = returnKeyValues.get("returnData");
|
|
@@ -121,37 +120,6 @@ public class MainFactoryApplication {
|
|
|
}
|
|
|
System.out.println("本机共部署服务个数:" + serviceList.size() + ",启动主动采集个数:" + autoCount);
|
|
|
}
|
|
|
-
|
|
|
- private static Map<String, String> getConfigByEnvironment(Environment env) {
|
|
|
- String url = env.getProperty("mydb.url");
|
|
|
- String uname = env.getProperty("mydb.title");
|
|
|
- String cipher = env.getProperty("mydb.cipher");
|
|
|
- String type = env.getProperty("mydb.type");
|
|
|
- String serviceURL = env.getProperty("mydb.serviceURL");
|
|
|
- Map<Object, Object> remoteDBConnect = new HashMap<>();
|
|
|
- if (null != url) {
|
|
|
- remoteDBConnect.put("url", url);
|
|
|
- }
|
|
|
- if (null != uname) {
|
|
|
- remoteDBConnect.put("username", uname);
|
|
|
- }
|
|
|
- if (null != cipher) {
|
|
|
- remoteDBConnect.put("password", cipher);
|
|
|
- }
|
|
|
- if (null != type) {
|
|
|
- remoteDBConnect.put("driver-class-name", type);
|
|
|
- }
|
|
|
- Map<String, String> returnMap = new HashMap<>();
|
|
|
- if (null != serviceURL) {
|
|
|
- returnMap.put("serviceURL", serviceURL);
|
|
|
- }
|
|
|
- if (null != url && null != uname && null != type && null != cipher) {
|
|
|
- returnMap.put("remote_db_connect", MapTools.objToJSONStr(remoteDBConnect));
|
|
|
- }
|
|
|
- return returnMap;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
/**
|
|
|
* 获取系统默认参数
|
|
|
*
|
|
@@ -172,7 +140,7 @@ public class MainFactoryApplication {
|
|
|
private static void currentWorkExit() {
|
|
|
ServiceInputControl.ScheduleTaskMaps.values().forEach(ScheduleUtil::cancel);
|
|
|
//关闭数据库连接
|
|
|
- MyDbHelper myDbHelper = ObjectMap.getordropMyDbHelper(AppConfig.getSystemParams(AppConfig.REMOTE_DB_CONNECT));
|
|
|
+ MyDbHelper myDbHelper = ObjectMap.getordropMyDbHelper(AppConfig.REMOTE_DB_CONNECT);
|
|
|
myDbHelper.close();
|
|
|
System.out.println("系统正常退出");
|
|
|
}
|
|
@@ -197,23 +165,6 @@ public class MainFactoryApplication {
|
|
|
}
|
|
|
return true;
|
|
|
}
|
|
|
-
|
|
|
- public static boolean LocalInitDB() {
|
|
|
- MyDbHelper myDbHelper = ObjectMap.getordropMyDbHelper(AppConfig.getSystemParams(AppConfig.LOCAL_LOG_CONNECT));
|
|
|
- if (Objects.nonNull(myDbHelper.getErrorMessage())) {
|
|
|
- System.out.println("初始化获取MyDbHelper对象异常");
|
|
|
- return false;
|
|
|
- }
|
|
|
- try {
|
|
|
- myDbHelper.execute("CREATE TABLE if not EXISTS `log_success_a` ( `id` int PRIMARY KEY NOT NULL , `success` TEXT DEFAULT NULL, `location` TEXT DEFAULT NULL, `logContent` TEXT, `serviceId`INT DEFAULT NULL, `workId` INT DEFAULT NULL, `iNDataContent` TEXT DEFAULT NULL, `outDataContent` TEXT DEFAULT NULL,`calculationLocation` TEXT DEFAULT NULL, `dataObjectId` TEXT DEFAULT NULL,`event` TEXT DEFAULT NULL,`createtime` timestamp not null default current_timestamp)");
|
|
|
- myDbHelper.execute("CREATE TABLE if not EXISTS `log_error_a` ( `id` int PRIMARY KEY NOT NULL , `success` TEXT DEFAULT NULL, `location` TEXT DEFAULT NULL, `logContent` TEXT, `serviceId` INT DEFAULT NULL, `workId` INT DEFAULT NULL, `iNDataContent` TEXT DEFAULT NULL, `outDataContent` TEXT DEFAULT NULL,`calculationLocation` TEXT DEFAULT NULL, `dataObjectId` TEXT DEFAULT NULL,`event` TEXT DEFAULT NULL,`createtime` timestamp not null default current_timestamp)");
|
|
|
- myDbHelper.execute("CREATE TABLE if not EXISTS `log_fulldata_a` ( `id` int(11) NOT NULL auto_increment PRIMARY KEY, `dataObjectId `TEXT DEFAULT NULL,`FULL_DATA_SQL` TEXT DEFAULT NULL)");
|
|
|
- } catch (Exception e) {
|
|
|
- return false;
|
|
|
- }
|
|
|
- return true;
|
|
|
- }
|
|
|
-
|
|
|
public static boolean initDB(MyDbHelper myDbHelper) {
|
|
|
|
|
|
Map<String, String> hasAppMap = myDbHelper.queryForObject("select count(1) hasCount from t_application where app_id =?", "1");
|
|
@@ -263,9 +214,8 @@ public class MainFactoryApplication {
|
|
|
}
|
|
|
try {
|
|
|
//远程表日志表结构结构
|
|
|
- myDbHelper.execute("CREATE TABLE if not EXISTS `log_success_a` ( `id` int(11) NOT NULL auto_increment PRIMARY KEY, `success` varchar(8) DEFAULT NULL, `location` varchar(255) DEFAULT NULL, `logContent` varchar(1024) DEFAULT NULL, `serviceId` int(11) DEFAULT NULL, `workId` int(11) DEFAULT NULL,`event` varchar(2) DEFAULT NULL, `iNDataContent` varchar(2048) DEFAULT NULL, `outDataContent` varchar(2048) DEFAULT NULL,`calculationLocation` varchar(8) DEFAULT NULL, `dataObjectId` varchar(32) DEFAULT NULL,`createtime` datetime )");
|
|
|
- myDbHelper.execute("CREATE TABLE if not EXISTS `log_error_a` ( `id` int(11) NOT NULL auto_increment PRIMARY KEY, `success` varchar(8) DEFAULT NULL, `location` varchar(255) DEFAULT NULL, `logContent` varchar(1024) DEFAULT NULL, `serviceId` int(11) DEFAULT NULL, `workId` int(11) DEFAULT NULL, `event` varchar(2) DEFAULT NULL,`iNDataContent` varchar(2048) DEFAULT NULL, `outDataContent` varchar(2048) DEFAULT NULL,`calculationLocation` varchar(8) DEFAULT NULL, `dataObjectId` varchar(32) DEFAULT NULL,`createtime`datetime)");
|
|
|
- myDbHelper.execute("CREATE TABLE if not EXISTS `log_fulldata_a` ( `id` int(11) NOT NULL auto_increment PRIMARY KEY, `dataObjectId` varchar(32) DEFAULT NULL,`FULL_DATA_SQL` longtext DEFAULT NULL)");
|
|
|
+ myDbHelper.execute("CREATE TABLE log_error (id int NOT NULL auto_increment PRIMARY KEY, success varchar(8) DEFAULT NULL, location varchar(256) DEFAULT NULL, logContent text, serviceId int DEFAULT NULL, workId int DEFAULT NULL, event varchar(2) DEFAULT NULL, iNDataContent longtext, outDataContent text, calculationLocation varchar(256) DEFAULT NULL, dataObjectId varchar(32) DEFAULT NULL, createtime datetime DEFAULT NULL");
|
|
|
+ myDbHelper.execute("CREATE TABLE log_success (id int NOT NULL auto_increment PRIMARY KEY, success varchar(8) DEFAULT NULL, location varchar(256) DEFAULT NULL, logContent text, serviceId int DEFAULT NULL, workId int DEFAULT NULL, event varchar(2) DEFAULT NULL, iNDataContent longtext, outDataContent text, calculationLocation varchar(256) DEFAULT NULL, dataObjectId varchar(32) DEFAULT NULL, createtime datetime DEFAULT NULL");
|
|
|
return true;
|
|
|
} catch (Exception e) {
|
|
|
return false;
|
|
@@ -290,16 +240,15 @@ public class MainFactoryApplication {
|
|
|
Runtime.getRuntime().gc();
|
|
|
}
|
|
|
|
|
|
- private MyDbHelper baseDbHelper;
|
|
|
+ private MyDbHelper logDbHelper;
|
|
|
|
|
|
/*1每2秒执行一次 日志的批量插入*/
|
|
|
@Scheduled(cron = "*/2 * * * * *")
|
|
|
public void batchLog() {
|
|
|
Map<String, List<Object>> logSuccessMap = LogUtils.logSuccessMapList;
|
|
|
Map<String, List<Object>> logErrorMap = LogUtils.logErrorMapList;
|
|
|
- Map<String, List<Object>> logSourceMap = LogUtils.sourceMapList;
|
|
|
/*批量写日志*/
|
|
|
- if (logSuccessMap.size() == 0 && logErrorMap.size() == 0 && logSourceMap.size() == 0) return;
|
|
|
+ if (logSuccessMap.size() == 0 && logErrorMap.size() == 0) return;
|
|
|
long current = System.currentTimeMillis();
|
|
|
List<String> successList = logSuccessMap.keySet().stream().filter(key -> Long.parseLong(key) < current).toList();
|
|
|
List<Object> logSuccessList = new ArrayList<>();
|
|
@@ -313,30 +262,33 @@ public class MainFactoryApplication {
|
|
|
logErrorList.addAll(logErrorMap.get(currentTime));
|
|
|
logErrorMap.remove(currentTime);
|
|
|
}
|
|
|
- List<String> sourceList = logSourceMap.keySet().stream().filter(key -> Long.parseLong(key) < current).toList();
|
|
|
- List<Object> logSourceList = new ArrayList<>();
|
|
|
- for (String currentTime : sourceList) {
|
|
|
- logSourceList.addAll(logSourceMap.get(currentTime));
|
|
|
- logSourceMap.remove(currentTime);
|
|
|
- }
|
|
|
- if (Objects.isNull(baseDbHelper)) {
|
|
|
- baseDbHelper = new MyDbHelper(AppConfig.getSystemParams(AppConfig.REMOTE_DB_CONNECT));//获取底座数据库对象
|
|
|
- if (Objects.nonNull(baseDbHelper.getErrorMessage())) {
|
|
|
+ if (Objects.isNull(logDbHelper)) {
|
|
|
+ logDbHelper = new MyDbHelper(AppConfig.REMOTE_DB_LOG_CONNECT);//获取底座数据库对象
|
|
|
+ if (Objects.nonNull(logDbHelper.getErrorMessage())) {
|
|
|
return;
|
|
|
}
|
|
|
}
|
|
|
- if (Objects.isNull(baseDbHelper)) {
|
|
|
+ if (Objects.isNull(logDbHelper)) {
|
|
|
System.out.println("获取远程数据库失败:写入日志失败");
|
|
|
return;
|
|
|
}
|
|
|
try {
|
|
|
- if (logSuccessList.size() > 0) baseDbHelper.JDBCBatch(INSERT_SQL, logSuccessList, null);
|
|
|
- if (logErrorList.size() > 0) baseDbHelper.JDBCBatch(ERROR_SQL, logErrorList, null);
|
|
|
- if (logSourceList.size() > 0) {
|
|
|
- baseDbHelper.JDBCBatch(FULL_DATA_SQL, logSourceList, null);
|
|
|
- }
|
|
|
+ if (logSuccessList.size() > 0) logDbHelper.JDBCBatch(INSERT_SQL, logSuccessList, null);
|
|
|
+ if (logErrorList.size() > 0) logDbHelper.JDBCBatch(ERROR_SQL, logErrorList, null);
|
|
|
} catch (Exception e) {
|
|
|
System.out.println("日志记录异常" + LogUtils.getException(e));
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void afterPropertiesSet() {
|
|
|
+ Map<String,Object> mapDB = (Map<String, Object>) MapTools.strToObj( MapTools.objToJSONStr(remoteDB));
|
|
|
+ mapDB.put("driver-class-name",mapDB.get("driverClassName"));
|
|
|
+ AppConfig.REMOTE_DB_CONNECT = MapTools.objToJSONStr(mapDB);
|
|
|
+
|
|
|
+ Map<String,Object> maplogDB = (Map<String, Object>) MapTools.strToObj(MapTools.objToJSONStr(remoteLogDB));
|
|
|
+ maplogDB.put("driver-class-name",maplogDB.get("driverClassName"));
|
|
|
+ AppConfig.REMOTE_DB_LOG_CONNECT = MapTools.objToJSONStr(maplogDB);
|
|
|
+ AppConfig.serviceURL =remoteDB.getServiceURL();
|
|
|
+ }
|
|
|
}
|