spring profiles的使用
Posted spdboke
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring profiles的使用相关的知识,希望对你有一定的参考价值。
spring中存在这样一个功能,通过Profile来选择不同环境下的不同配置,说白了,就是通过设置一个参数来选择使用不同的数据,这个数据可能是一个bean,可能是一个xml文件,也有可能是一个propertes文件。
Spring的profiles有两个变量可以配置
spring.profiles.default 默认值,优先级低。当active没有配置时,使用此变量。
spring.profiles.active 优先级高,指定当前容器使用哪个profile。
Spring的profiles有两个变量可以配置
参考:https://blog.csdn.net/tuzongxun/article/details/53607363
以上是关于spring profiles的使用的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot(十九)_spring.profiles.active=@profiles.active@ 的使用