时间:2021-05-19
限制条件:
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.jaraudit-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/myappservice myapp start总结
以上所述是小编给大家介绍的Spring boot部署发布到linux的操作方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1.什么是spring-boot-devtoolsspring-boot-devtools是spring-boot项目开发时的一个热部署工具,安装了spring
1pom.xml文件注:热部署功能spring-boot-1.3开始有的org.springframework.bootspring-boot-devtools
1pom.xml文件注:热部署功能spring-boot-1.3开始有的?1234567org.springframework.bootspring-boot-
1pom.xml文件注:热部署功能spring-boot-1.3开始有的org.springframework.bootspring-boot-devtools
项目升级到springboot2.3之后,参数校验的注解报错,发现spring-boot-starter-web的依赖项已经去除了依赖点开spring-boot