自动化立体仓库 - WMS系统
Junjie
2024-08-01 a073250f6f4f8c32888bc60b24ff6984e29af51e
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;