spring boot 启动

启动spring boot
java -jar tuia-0.0.1-SNAPSHOT.jar --spring.profiles.active=prod
查找进程
ps aux|grep tuia-0.0.1-SNAPSHOT.jar
nohup java -jar tuia-0.0.1-SNAPSHOT.jar --spring.profiles.active=prod&
杀进程
kill -s 9 pid

  

原文地址:https://www.cnblogs.com/Guroer/p/9539589.html