当前位置:   article > 正文

springboot项目根据xjar插件加密jar包(不用go环境)_xjar-maven-plugin

xjar-maven-plugin

文章目录

概要

加密主体是xjar,可以添加xjar-maven-plugin插件方便打包使用,xjar插件为开源插件,可自行在github上下载源码使用。
xjar开源地址:https://github.com/core-lib/xjar;
xjar-maven-plugin开源地址:https://github.com/core-lib/xjar-maven-plugin。

细节

  1. 在需要加密的项目中引入xjar-maven-plugin插件
        <!-- 添加 XJar Maven 插件 -->
        <plugin>
            <groupId>com.github.core-lib</groupId>
            <artifactId>xjar-maven-plugin</artifactId>
            <version>4.0.3</version>
            <executions>
                <execution>
                    <goals>
                        <goal>build</goal>
                    </goals>
                    <phase>install</phase>
                    <!-- 或使用
                    <phase>package</phase>
                    -->
                    <configuration>
                    	<!-- 需要进行加密的路径 -->
                        <includes>
                            <!-- 路径为编译后的classes目录下 -->
                            <include>/com/**</include>
                        </includes>
                        <!-- 不需要进行加密的路径 -->
                        <excludes>
                            <exclude>templates/**</exclude>
                        </excludes>
                        <!-- 打包名称 -->
                        <targetJar>test-1.0-SNAPSHOT.xjar</targetJar>
                    </configuration>
                </execution>
            </executions>
        </plugin>
  • 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
  1. 打包加密使用mvn clean package -Dxjar.password=加密密码命令即可。将生成以下文件在这里插入图片描述
    jar文件:是未加密的jar包
    xjar文件:是已经加密的包
    go文件:是以go环境启动加密包的工具包(因服务器不含go环境,所以不考虑)

  2. 启动加密包
    1、使用java -jar xxx.xjar启动
    2、启动后控制台需要输入加密信息,以下命令逐行输入,最后一行为密码

 AES/CBC/PKCS5Padding
  • 1
128
  • 1
128
  • 1
加密密码
  • 1

补充

因项目部署都是采用流水线的方式,项目启动都是通过linux的执行脚本启动的,但是在执行脚本中难以实现在java应用进程中输入解密信息,因此需要将主体xjar包内容修改。下载xjar源码,找到源码中的XLauncher.java文件,将在这里插入图片描述
改为
在这里插入图片描述
这样就可以通过java -Dpassword=加密密码 -jar xxx.xjar的方式启动加密包了,密码也可采用获取流水线的变量值来实现部署的服务器上取不到加密密码,阿里云的流水线获取变量的方式为${加密密码}方式获取,deploy.sh也可行。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/456101
推荐阅读
相关标签
  

闽ICP备14008679号