From 473da408619b57c656cc22e191e9ed2e1c3eafaa Mon Sep 17 00:00:00 2001 From: lsh <lsh@163.com> Date: 星期五, 13 六月 2025 10:41:19 +0800 Subject: [PATCH] * --- src/main/java/com/zy/core/ServerBootstrap.java | 25 +++++++++++++++++++++++-- 1 files changed, 23 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/zy/core/ServerBootstrap.java b/src/main/java/com/zy/core/ServerBootstrap.java index 90118a1..28352cb 100644 --- a/src/main/java/com/zy/core/ServerBootstrap.java +++ b/src/main/java/com/zy/core/ServerBootstrap.java @@ -137,10 +137,31 @@ @Scheduled(cron = "0 0 4 * * ?") public void licenseVerify() { + int licenseVerifySignCount = 0; + boolean licenseVerifySign = false; + boolean systemSign = SystemProperties.WCS_RUNNING_STATUS.get(); if (!new LicenseVerify().verify()){ - SystemProperties.WCS_RUNNING_STATUS.set(Boolean.FALSE); + for (licenseVerifySignCount = 0;!licenseVerifySign && licenseVerifySignCount<10; licenseVerifySignCount++){ + try{ + Thread.sleep(1000); + }catch (Exception e){ + + } + if (!new LicenseVerify().verify()){ + log.info("++++++++ 楠岃瘉璁稿彲璇佸け璐� ++++++++"); + } else { + log.info("++++++++ 楠岃瘉璁稿彲璇佹垚鍔� ++++++++"); + licenseVerifySign = true; + } + } + if (licenseVerifySignCount>10 && !licenseVerifySign){ + SystemProperties.WCS_RUNNING_STATUS.set(Boolean.FALSE); + } else { + if (systemSign){ + SystemProperties.WCS_RUNNING_STATUS.set(Boolean.TRUE); + } + } } } } - } -- Gitblit v1.9.1