springboot项目(jar包)指定配置文件启动图文教程
作者:coder杂货铺
这篇文章主要给大家介绍了关于springboot项目(jar包)指定配置文件启动的相关资料,在多环境部署过程中、及线上运维中可能会遇到临时指定配置文件的情况,需要的朋友可以参考下
IDE开发工具启动
在JetBrains IDEA开发工具的配置
1.启动类启动方式
2.main方法启动方式
在IDEA中的program arguments配置此项--spring.profiles.active=dev
命令
3.JVM启动方式
在IDEA中的VM options配置此项-Dspring.profiles.active=dev
命令
jar包启动
1.指定配置环境
nohup java -jar -Dfile.encoding=utf-8 -Dspring.profiles.active=dev example.jar >/dev/null 2>&1 &
该启动时方式会去加载Jar包中resource目录下application-dev.yml或application-dev.properties文件。同时需要注意的是通IDEA的启动方式一样。
2.指定配置文件
yml文件
nohup java -jar -Dfile.encoding=utf-8 -Dspring.config.location=classpath:/application-dev.yml example.jar >/dev/null 2>&1 &
properties文件
nohup java -jar -Dfile.encoding=utf-8 -Dspring.config.location=classpath:/application-dev.properties example.jar >/dev/null 2>&1 &
若配置文件在Jar包外面,-Dspring.config.location=后面不用classpath,直接使用配置文件的相对或绝对路径即可:例如 -Dspring.config.location=app-dev.yml-Dspring.config.location=/usr/local/soft/config/app-dev.yml
总结
到此这篇关于springboot项目(jar包)指定配置文件启动的文章就介绍到这了,更多相关springboot指定配置文件启动内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!