From a073250f6f4f8c32888bc60b24ff6984e29af51e Mon Sep 17 00:00:00 2001 From: Junjie <540245094@qq.com> Date: 星期四, 01 八月 2024 17:04:01 +0800 Subject: [PATCH] #增加弃车功能 --- src/main/java/com/zy/system/entity/license/LicenseCheckListener.java | 37 +++++++++++++++++++++---------------- 1 files changed, 21 insertions(+), 16 deletions(-) diff --git a/src/main/java/com/zy/system/entity/license/LicenseCheckListener.java b/src/main/java/com/zy/system/entity/license/LicenseCheckListener.java index 75cee89..e268997 100644 --- a/src/main/java/com/zy/system/entity/license/LicenseCheckListener.java +++ b/src/main/java/com/zy/system/entity/license/LicenseCheckListener.java @@ -11,6 +11,7 @@ import org.springframework.stereotype.Component; import java.io.File; +import java.io.InputStream; /** * 鍦ㄩ」鐩惎鍔ㄦ椂瀹夎璇佷功 @@ -63,26 +64,30 @@ if(!Cools.isEmpty(licensePath)){ logger.info("++++++++ 寮�濮嬪姞杞借鍙瘉 ++++++++"); - String publicKeysStoreFileName = this.getClass().getClassLoader().getResource(publicKeysStorePath).getPath(); - File publicKeysStoreFile = new File(publicKeysStoreFileName); + try { +// String publicKeysStoreFileName = this.getClass().getClassLoader().getResource(publicKeysStorePath).getPath(); +// File publicKeysStoreFile = new File(publicKeysStoreFileName); +// +// String licensePathFileName = this.getClass().getClassLoader().getResource(licensePath).getPath(); +// File licensePathFile = new File(licensePathFileName); - String licensePathFileName = this.getClass().getClassLoader().getResource(licensePath).getPath(); - File licensePathFile = new File(licensePathFileName); + LicenseVerifyParam param = new LicenseVerifyParam(); + param.setSubject(subject); + param.setPublicAlias(publicAlias); + param.setStorePass(storePass); + param.setLicensePath(licensePath); + param.setPublicKeysStorePath(publicKeysStorePath); - LicenseVerifyParam param = new LicenseVerifyParam(); - param.setSubject(subject); - param.setPublicAlias(publicAlias); - param.setStorePass(storePass); - param.setLicensePath(licensePathFile.getPath()); - param.setPublicKeysStorePath(publicKeysStoreFile.getPath()); + LicenseVerify licenseVerify = new LicenseVerify(); + //瀹夎璇佷功 + LicenseContent install = licenseVerify.install(param); - LicenseVerify licenseVerify = new LicenseVerify(); - //瀹夎璇佷功 - LicenseContent install = licenseVerify.install(param); + logger.info("++++++++ 璁稿彲璇佸姞杞界粨鏉� ++++++++"); - logger.info("++++++++ 璁稿彲璇佸姞杞界粨鏉� ++++++++"); - - return install != null; + return install != null; + } catch (Exception e) { + return false; + } } return false; -- Gitblit v1.9.1