springboot项目打成jar包后,以后台运行的方式运行在linux上
程序员文章站
2022-05-04 16:53:55
...
springboot项目打成jar包后台运行在linux上
java -jar xxx.jar &
说明: 在末尾加入 & 符号
nohup java -jar xxxx.jar &
将java -jar xxxx.jar 加入 nohup &中间,也可以实现
这样就能后台启动了
有时候我们可能想改一下端口,要是再重新打包一份就太麻烦了,我们可以在启动命令上加上启动端口参数
命令:nohup java -jar xx.jar --server.port=8083 &
<!-- 打包可执行jar包 -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
<mainClass>com.sanro.test.CMApplication</mainClass>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
下一篇: 正则表达式的优化全面详解( 三江小渡)