andy 11 months ago
parent
commit
28b96594a8

+ 1 - 1
src/main/java/com/scbfkj/uni/api/FileApi.java

@@ -15,7 +15,7 @@ import java.util.Map;
 import java.util.Set;
 
 @RestController
-@RequestMapping("file")
+@RequestMapping("/file")
 public class FileApi {
 
     private static final Set<String> CONTENT_TYPES = Set.of("application/vnd.ms-excel", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");

+ 1 - 1
src/main/java/com/scbfkj/uni/api/LogAop.java

@@ -57,7 +57,7 @@ public class LogAop {
             Map body = null;
 
 //            判断服务状态是否为健康状态 runstate!=0 只判断openApi接口
-            if (args.length > 0 && uri.startsWith("/openApi")) {
+            if (args.length > 0 && (!uri.startsWith("/controlApi")&&!uri.startsWith("/file")&&!uri.startsWith("/user")&&!uri.startsWith("/foxlibc")&&!uri.startsWith("/ws"))) {
                 Object arg = args[0];
                 if (arg instanceof Map map) {
 //                    查找serviceid

+ 1 - 1
src/main/java/com/scbfkj/uni/system/ProcessUtil.java

@@ -115,6 +115,7 @@ public class ProcessUtil {
 
                 for (int g = 0; g < group.count; g++) {
                     for (Map<String, Object> algorithmLibrary : list) {
+                        preCode="0";
                         startDateTime = LocalDateTime.now();
                         long startTime = System.currentTimeMillis();
                         algorithmlibraryid = algorithmLibrary.get("algorithmlibraryid");
@@ -127,7 +128,6 @@ public class ProcessUtil {
                         HashMap<String, Object> preData = new HashMap<>();
                         preData.put("preConditions", preConditions);
                         preData.put("algorithmlibraryid", algorithmlibraryid);
-                        preData.put("args", resource);
                         preData.put("count", g);
                         preResource.add(preData);
                         if (Objects.nonNull(preConditions)) {

+ 16 - 16
src/main/java/com/scbfkj/uni/system/SystemInit.java

@@ -88,22 +88,22 @@ public class SystemInit {
     @PostConstruct
     public void init() throws Exception {
 
-//        String serviceUrl = SpringContextApplication.getString("DEFAULT_SERVICE_URL");
-//        String appkey = SpringContextApplication.getString("APPKEY");
-//        try {
-//            checkAppKey(serviceUrl, appkey);
-//            ScheduleUtil.startCronTask(() -> {
-//                try {
-//                    checkAppKey(serviceUrl, appkey);
-//                } catch (Exception e) {
-//                    System.out.println(e.getMessage());
-//                    System.exit(-1);
-//                }
-//            }, "0 0 0 * * *");
-//        } catch (Exception e) {
-//            System.out.println(e.getMessage());
-//            System.exit(-1);
-//        }
+        String serviceUrl = SpringContextApplication.getString("DEFAULT_SERVICE_URL");
+        String appkey = SpringContextApplication.getString("APPKEY");
+        try {
+            checkAppKey(serviceUrl, appkey);
+            ScheduleUtil.startCronTask(() -> {
+                try {
+                    checkAppKey(serviceUrl, appkey);
+                } catch (Exception e) {
+                    System.out.println(e.getMessage());
+                    System.exit(-1);
+                }
+            }, "0 0 0 * * *");
+        } catch (Exception e) {
+            System.out.println(e.getMessage());
+            System.exit(-1);
+        }
         Config.setContainerCode(containerCode);
         Config.setSecurityEnable(securityEnable);
         Config.setDebug(debug);