一、在idea上打包jar步骤
可参考:https://blog.csdn.net/m0_37063257/article/details/78300877
二、部署到linux
<1>首次部署当前程序需要在对应的文件夹中执行以下命令
a.启动程序 nohup java -jar demo01.jar &
b.退出 ctrl + c
c.查看日志 tail -500f nohup.out
<2>非首次部署当前程序需要在对应的文件夹中执行以下命令
a.捕获上一个版本程序的进程 ps - ef|grep demo01.jar
b.杀死对应的进程 kill 进程号
c.启动程序 nohup java -jar demo01.jar &
d.退出 ctrl + c
e.查看日志 tail -500f nohup.out
三、可能出现的问题
1. Invalid or corrupt jarfile
可参考:https://blog.csdn.net/qq_39966266/article/details/80619177
缺少图示的文件