springboot打包,jar包可以以service方式启动
Posted liangblog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot打包,jar包可以以service方式启动相关的知识,希望对你有一定的参考价值。
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <!-- 可以发不成linux服务包,直接用linux的servic命令启动 --> <executable>true</executable> </configuration> </plugin> </plugins> </build>
需要做软连接
ln -sb 原文件 /etc/init.d/服务名
然后 设置权限
启动:
service 服务名 start|stop|status|restart
以上是关于springboot打包,jar包可以以service方式启动的主要内容,如果未能解决你的问题,请参考以下文章