_little-star_

学习的博客

0%

springboot项目打成jar包后台运行在linux上

背景:springboot2为为主体搭建的项目,直接打成jar包,上传到linux上面

启动项目:java -jar xx.jar 这样很方便,但是不能关闭窗口,否则项目就停了

后台启动: nohup java -jar xx.jar &

这样就能后台启动了

有时候我们并不是部署单机版的,需要部署多个,可能部署到一台机器上,但是端口肯定得不一样吧,要是再重新打包一份就太麻烦了,我们可以在启动命令上加上启动端口参数

命令:nohup java -jar xx.jar –server.port=8083 &

此时你会发现在当前目录下多了nohup.out 的文件,这个文件就是你项目的日志文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
    <!-- 打包可执行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>