spring boot 多环境(devtestprod)配置文件---命令行切换
Posted 兮夜里人来人往
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 多环境(devtestprod)配置文件---命令行切换相关的知识,希望对你有一定的参考价值。
- properties配置格式
在Spring boot 中多环境配置文件名需要满足application-{profile}.properties的格式,其中{profile}对于你的环境标识,比如:
在application.properties 中配置 spring.profiles.active=dev #默认开发环境
在启动jar包时,使用命令行切换
-
java -jar xxx.jar --spring.profiles.active=test // 测试环境配置文件 java -jar xxx.jar --spring.profiles.active=prod// 生产环境配置文件
以上是关于spring boot 多环境(devtestprod)配置文件---命令行切换的主要内容,如果未能解决你的问题,请参考以下文章