pms 2 жил өмнө
parent
commit
e76da45475

+ 17 - 6
mainFactory/src/main/java/org/bfkj/MainFactoryApplication.java

@@ -18,8 +18,6 @@ import org.springframework.scheduling.annotation.Scheduled;
 
 import java.io.File;
 import java.util.*;
-import java.util.regex.Matcher;
-import java.util.regex.Pattern;
 
 /**
  * 初始化
@@ -318,12 +316,12 @@ public class MainFactoryApplication {
             logSourceList.addAll(logSourceMap.get(currentTime));
             logSourceMap.remove(currentTime);
         }
-
         /*批量写日志*/
-        if (logErrorList.size() ==0 &&logSourceList.size() ==0&& logSuccessList.size()==0 ) return;
-        MyDbHelper myDbHelper = ObjectMap.getordropMyDbHelper(AppConfig.getSystemParams(AppConfig.REMOTE_DB_CONNECT));
-        if (Objects.nonNull(myDbHelper.getErrorMessage())) {
+        if (logErrorList.size() == 0 && logSourceList.size() == 0 && logSuccessList.size() == 0) return;
+        MyDbHelper myDbHelper = getDbHelper();
+        if (Objects.isNull(myDbHelper)){
             System.out.println("获取远程数据库失败:写入日志失败");
+            return;
         }
         try {
             if (logSuccessList.size() > 0) myDbHelper.JDBCBatch(INSERT_SQL, logSuccessList, null);
@@ -335,4 +333,17 @@ public class MainFactoryApplication {
             System.out.println("日志记录异常" + LogUtils.getException(e));
         }
     }
+
+    private MyDbHelper baseDbHelper;
+
+    public MyDbHelper getDbHelper() {
+        if (Objects.isNull(baseDbHelper)) {
+            baseDbHelper = new MyDbHelper(AppConfig.getSystemParams(AppConfig.REMOTE_DB_CONNECT));//获取底座数据库对象
+            if (Objects.nonNull(baseDbHelper.getErrorMessage())) {
+                return null;
+            }
+        }
+        return baseDbHelper;
+
+    }
 }

+ 2 - 0
mainFactory/src/main/java/org/bfkj/utils/ImportExcelUtils.java

@@ -16,6 +16,7 @@ public class ImportExcelUtils {
 
     // 将表格中的数据添加到List集合中
     public Map<String, Object> upload(String fileName, InputStream is) {
+        String dataObjectId = System.currentTimeMillis() +"";
         try {
             File file = new File(System.getProperty("user.dir") + File.separator + "upload" + File.separator + System.currentTimeMillis() + "_" + fileName);
             String isUpLoad = saveFile(file, is);
@@ -41,6 +42,7 @@ public class ImportExcelUtils {
                         }
                         Date now2 = Calendar.getInstance().getTime();
                         tempMap.put("createtime",format1.format(now2));
+                        tempMap.put("dataObjectId",dataObjectId);
                         tempMapList.add(tempMap);
                     }
                 }