Spring boot部署发布到linux的操作方法

网友投稿 249 2023-05-16


Spring boot部署发布到linux的操作方法

限制条件:

The default script supports most linux distributions and is tested on CentOS and Ubuntu. Other platforms, such as OS X and FreeBSD, will require the use of a custom embeddedLaunchScript.

当前文档适用于 CentOS and Ubuntu,其他平台需要定制脚本

1、部署发布

1.1 打包

maven打包成执行文件

org.springframework.boot

spring-boot-maven-plugin

true

Gradle设置

springBoot {

executable = true

}

You can then run your application by typing ./my-application.jar (where my-application is the name of your artifact).

打包完成后,可以使用./my-application.jar 运行

1.2 原理

linux下查看文件格式为一个bshell可执行文件

[root@i-2cjt6k6n ~]# file audit-console-1.0.0.jar

audit-console-1.0.0.jar: Bourne-AgaBJwrNOxHin shell script text executable

查看文件内容

vi audit-console-1.0.0.jar

文件开头:

shell与执行jar内容的分割:

可以看到,非常高的技巧,jar包包装为shell可执行文件,另外可以加载自己运行

1.3 发布为一个服务

ln -s /var/myapp/myapp.jar /etc/init.d/myapp

service myapp start

总结

以上所述是给大家介绍的Spring boot部署发布到linux的操作方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,会及时回复大家的。在此也非常感谢大家对我们网站的支持!


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:VerifyCodeServlet(一次性验证码)
下一篇:bootstrap弹出层的多种触发方式
相关文章

 发表评论

暂时没有评论,来抢沙发吧~