欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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>



 

   
相关标签: springboot