SpringBoot项目打包exe程序

一、准备工作:

1、 一个jar包,没有bug能正常启动的jar包
2、 exe4j,一个将jar转换成exe的工具
3、 inno setup,一个将依赖和exe一起打成一个安装程序的工具。

二、把项目导成jar包

1.首先要有一个可以运行的springboot项目。
2.加入依赖

springboot运行目录下的dll文件 springboot dll 打包_jar包

3.把项目导成jar包

springboot运行目录下的dll文件 springboot dll 打包_spring_02

4.成功后的模样

springboot运行目录下的dll文件 springboot dll 打包_java_03

5.显示target

springboot运行目录下的dll文件 springboot dll 打包_spring_04

6.找到导好的jar包的位置(也可以复制到你想要存放的地方)

springboot运行目录下的dll文件 springboot dll 打包_jar包_05

7.执行jar包

springboot运行目录下的dll文件 springboot dll 打包_spring_06

8.运行成功

springboot运行目录下的dll文件 springboot dll 打包_jar_07


三、安装exe4j并且把项目打包成exe程序

1.安装地址:https://exe4j.apponic.com/ (傻瓜式安装,一直下一步就行了)

springboot运行目录下的dll文件 springboot dll 打包_jar_08

2.打开安装好的exe4j
3.点击下一步

springboot运行目录下的dll文件 springboot dll 打包_jar包_09

4.选择JAVA转EXE

springboot运行目录下的dll文件 springboot dll 打包_jar包_10

5.设置exe程序名称以及存放的路径

springboot运行目录下的dll文件 springboot dll 打包_jar_11

6.选择启动方式

springboot运行目录下的dll文件 springboot dll 打包_java_12

7.需要设置打包后的程序兼容32和64位系统

springboot运行目录下的dll文件 springboot dll 打包_jar_13


springboot运行目录下的dll文件 springboot dll 打包_jar_14

8.1在VM参数配置的地方加上:-Dfile.encoding=utf-8

springboot运行目录下的dll文件 springboot dll 打包_java_15

8.2选择要打包成exe程序的jar包

springboot运行目录下的dll文件 springboot dll 打包_jar_16

9.选择启动类

springboot运行目录下的dll文件 springboot dll 打包_spring_17

10.选择jdk版本

springboot运行目录下的dll文件 springboot dll 打包_jar_18

11.打包

springboot运行目录下的dll文件 springboot dll 打包_jar包_19


springboot运行目录下的dll文件 springboot dll 打包_jar_20


springboot运行目录下的dll文件 springboot dll 打包_spring_21

12.成功

springboot运行目录下的dll文件 springboot dll 打包_java_22


四、无jdk电脑环境下运行

1.安装inno setup
安装地址:https://jrsoftware.org/isdl.php

springboot运行目录下的dll文件 springboot dll 打包_项目打包_23


springboot运行目录下的dll文件 springboot dll 打包_项目打包_24

2.填写配置,应用名称,版本等,随意

springboot运行目录下的dll文件 springboot dll 打包_jar_25

3.选择生成好的exe文件

springboot运行目录下的dll文件 springboot dll 打包_项目打包_26

4.一直下一步直到选择语言(English)

springboot运行目录下的dll文件 springboot dll 打包_java_27

5.修改脚本

springboot运行目录下的dll文件 springboot dll 打包_项目打包_28

springboot运行目录下的dll文件 springboot dll 打包_spring_29

#define MyJreName “jre” Source: “(自己本地JRE路径)*”; DestDir: “{app}{#MyJreName}”; Flags: ignoreversion recursesubdirs
 createallsubdirs

6.成功,接下来直接运行exe程序,就相当于启动spring boot项目了。