From 1bc0b18a88ed90fa19e0c050d7befecb2a16bb8a Mon Sep 17 00:00:00 2001
From: L <L@132>
Date: 星期五, 10 十月 2025 12:38:27 +0800
Subject: [PATCH] *
---
src/main/java/com/zy/system/controller/LicenseCreatorController.java | 2 ++
src/main/java/com/zy/core/MainProcess.java | 30 ++++++++++++++++++++++++++++++
src/main/resources/application.yml | 2 +-
3 files changed, 33 insertions(+), 1 deletions(-)
diff --git a/src/main/java/com/zy/core/MainProcess.java b/src/main/java/com/zy/core/MainProcess.java
index 9304869..5770eec 100644
--- a/src/main/java/com/zy/core/MainProcess.java
+++ b/src/main/java/com/zy/core/MainProcess.java
@@ -22,6 +22,7 @@
private MainServiceImpl mainService;
// 鎵�灞炵嚎绋�
private Thread thread;
+ private Thread threadVerify;
// 棰戠巼
private int[] autoZ = new int[]{0,0,0,0,0,0,0};
@@ -66,11 +67,40 @@
}
});
thread.start();
+ threadVerify = new Thread(() -> {
+ while (!Thread.currentThread().isInterrupted()) {
+ try {
+ // 闂撮殧
+ Thread.sleep(60000);
+
+ // 绯荤粺杩愯鐘舵�佸垽鏂�
+ if (!SystemProperties.WCS_RUNNING_STATUS.get()) {
+ continue;
+ }
+
+ try{
+ log.info("++++++++ 寮�濮嬮獙璇佽鍙瘉 ++++++++");
+ if (!mainService.licenseVerify()){
+ SystemProperties.WCS_RUNNING_STATUS.set(Boolean.FALSE);
+ log.info("++++++++ 楠岃瘉璁稿彲璇佸け璐� ++++++++");
+ } else {
+ SystemProperties.WCS_RUNNING_STATUS.set(Boolean.TRUE);
+ log.info("++++++++ 楠岃瘉璁稿彲璇佹垚鍔� ++++++++");
+ }
+ } catch (Exception e) {}
+
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+ });
+ threadVerify.start();
}
@PreDestroy
public void shutDown(){
if (thread != null) thread.interrupt();
+ if (threadVerify != null) threadVerify.interrupt();
}
}
diff --git a/src/main/java/com/zy/system/controller/LicenseCreatorController.java b/src/main/java/com/zy/system/controller/LicenseCreatorController.java
index 693a640..96a3fdd 100644
--- a/src/main/java/com/zy/system/controller/LicenseCreatorController.java
+++ b/src/main/java/com/zy/system/controller/LicenseCreatorController.java
@@ -3,6 +3,7 @@
import com.core.annotations.ManagerAuth;
import com.core.common.Cools;
import com.core.common.R;
+import com.zy.core.properties.SystemProperties;
import com.zy.system.entity.license.*;
import de.schlichtherle.license.LicenseContent;
import org.springframework.beans.factory.annotation.Autowired;
@@ -75,6 +76,7 @@
LicenseVerify licenseVerify = new LicenseVerify();
LicenseContent verifyInfo = licenseVerify.getVerifyInfo();
if (verifyInfo == null) {
+ SystemProperties.WCS_RUNNING_STATUS.set(Boolean.FALSE);
return R.error();
}
diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml
index 807458d..f383a98 100644
--- a/src/main/resources/application.yml
+++ b/src/main/resources/application.yml
@@ -9,7 +9,7 @@
datasource:
driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
url: jdbc:sqlserver://127.0.0.1:50751;databasename=gdhmasrs
-# url: jdbc:sqlserver://127.0.0.1:50948;databasename=gdhmasrs
+# url: jdbc:sqlserver://127.0.0.1:62316;databasename=gdhmasrs
username: sa
password: sa@123
mvc:
--
Gitblit v1.9.1