Spring boot部署发布到linux的操作方法
程序员文章站
2024-02-22 09:23:46
限制条件:
the default script supports most linux distributions and is tested on centos...
限制条件:
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打包成执行文件
<plugin> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-maven-plugin</artifactid> <configuration> <executable>true</executable> </configuration> </plugin>
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-again 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的操作方法,希望对大家有所帮助
上一篇: python入门教程之识别验证码
下一篇: Android实现手机震动效果
推荐阅读
-
Spring boot部署发布到linux的操作方法
-
spring Boot打包部署到远程服务器的tomcat中
-
Spring Boot应用程序创建可部署的war文件到tomcat
-
把spring boot项目发布tomcat容器(包含发布到tomcat6的方法)
-
Spring Boot应用发布到Docker的实现
-
Spring Boot应用发布到Docker的实现
-
spring Boot打包部署到远程服务器的tomcat中
-
Spring Boot Gradle发布war到tomcat的方法示例
-
Spring Boot应用通过Docker发布部署的流程分析
-
Spring Boot 应用 快速发布到linux服务器的脚本代码示例