springboot之jar部署
1.pom.xml 设置
设置packaging :jar
2.使用springboot 插件
如果提示找不到启动文件需要设置启动文件。
3.使用maven打包
进入到项目pom.xml 所在位置
mvn clean package -Dmaven.test.skip=true
4.linux 启动
命令 nohup java -jar my.jar &
1.pom.xml 设置
设置packaging :jar
2.使用springboot 插件
如果提示找不到启动文件需要设置启动文件。
3.使用maven打包
进入到项目pom.xml 所在位置
mvn clean package -Dmaven.test.skip=true
4.linux 启动
命令 nohup java -jar my.jar &