• 自研系统加入license授权(附源码)


    1.将ClientDemo(源码找作者获取)下的cn文件夹的内容导入项目对应的java目录下。

    2.将license-config.properties文件导入resources目录下。

    在这里插入图片描述

    3.在项目的pom.xml中添加如下依赖。

        <properties>
            <!-- Apache HttpClient -->
            <httpclient>4.5.5</httpclient>
            <!-- License -->
            <truelicense>1.33</truelicense>
        </properties>
    
    
    </dependencies>下:
            <!-- Apache HttpClient -->
            <dependency>
                <groupId>org.apache.httpcomponents</groupId>
                <artifactId>httpclient</artifactId>
                <version>${httpclient}</version>
            </dependency>
    
            <!-- Jackson对自动解析JSON和XML格式的支持 -->
            <dependency>
                <groupId>com.fasterxml.jackson.jaxrs</groupId>
                <artifactId>jackson-jaxrs-json-provider</artifactId>
            </dependency>
            <dependency>
                <groupId>com.fasterxml.jackson.dataformat</groupId>
                <artifactId>jackson-dataformat-xml</artifactId>
            </dependency>
            <!-- License -->
            <dependency>
                <groupId>de.schlichtherle.truelicense</groupId>
                <artifactId>truelicense-core</artifactId>
                <version>${truelicense}</version>
            </dependency>
            <dependency>
                <groupId>net.sourceforge.nekohtml</groupId>
                <artifactId>nekohtml</artifactId>
                <version>1.9.22</version>
            </dependency>
    
    
    最后:
            <resources>
                <resource>
                    <directory>src/main/resources</directory>
                </resource>
                <resource>
                    <directory>src/main/java</directory>
                    <includes>
                        <include>**/*.properties</include>
                        <include>**/*.xml</include>
                        <include>**/*.tld</include>
                    </includes>
                    <filtering>false</filtering>
                </resource>
            </resources>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53

    4.在BcdFlightApplication.java启动项中添加:

    import org.springframework.context.annotation.ComponentScan;
    import org.springframework.context.annotation.PropertySource;
    
    @ServletComponentScan
    @ComponentScan(basePackageClasses = {BcdFlightApplication.class, LicenseCheckListener.class})
    @PropertySource({"license-config.properties"}) //加载额外的配置
    public class BcdFlightApplication extends SpringBootServletInitializer {  ...  }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    5.在WebMvcConfig.java中添加需要校验的接口。

        /**
         * 添加拦截器
         */
        @Override
        public void addInterceptors(InterceptorRegistry registry) {
            registry.addInterceptor(new LicenseCheckInterceptor()).addPathPatterns("/flight/hlFlyPlan/**");
            registry.addInterceptor(new LicenseCheckInterceptor()).addPathPatterns("/flight/hlFlyDemand/**");
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    6.linux执行license.sh文件,获取认证所需相关信息;

    windows执行(获取IP,mac,CPU,主板信息.bat)文件,获取认证所需相关信息。
    
    • 1

    7.使用JDK自带的 keytool 工具生成公私钥证书库:

    #生成命令
    keytool -genkeypair -keysize 1024 -validity 3650 -alias "privateKey" -keystore "privateKeys.keystore" -storepass "public_password1234" -keypass "private_password1234" -dname "CN=localhost, OU=localhost, O=localhost, L=SH, ST=SH, C=CN"
    
    #导出命令
    keytool -exportcert -alias "privateKey" -keystore "privateKeys.keystore" -storepass "public_password1234" -file "certfile.cer"
    
    #导入命令
    keytool -import -alias "publicCert" -file "certfile.cer" -keystore "publicCerts.keystore" -storepass "public_password1234"
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    windows:将privateKeys.keystore,publicCerts.keystore导入C:/layman/目录下
    Linux:将privateKeys.keystore,publicCerts.keystore导入/layman/目录下

    8.本地启动ServerDemo服务,在postman中执行http://127.0.0.1:7000/license/generateLicense,生成license.lic文件。

    windows:将license.lic导入C:/layman/目录下
    Linux:将license.lic导入/layman/目录下

    9.运行程序,查看证书安装情况。

    在这里插入图片描述

  • 相关阅读:
    使用 Redis 实现生成分布式全局唯一ID(使用SpringBoot环境实现)
    5G技术的飞速发展:连接未来
    SpringBoot定时任务 - 集成quartz实现定时任务(单实例和分布式两种方式)
    基于强化学习的测试日志智能分析实践
    数商云SCM系统实时订单协同与信息共享推动家居建材企业数字化转型
    如何实现蓝牙配对方法混淆攻击
    C/C++/Windows/Linux文件操作
    基于Python的网络爬虫开发与实现
    喜提JDK的BUG一枚!多线程的情况下请谨慎使用这个类的stream遍历。
    Java基于springboot开发的景点旅游项目
  • 原文地址:https://blog.csdn.net/weixin_54514751/article/details/133852201