2020
10-08
10-08
springboot 多环境切换的方法
properties文件profile是Spring对不同环境提供不同配置功能的支持,可以通过激活不同的环境版本,实现快速切换环境;例如:application-test.properties代表测试环境配置application-dev.properties代表开发环境配置但是Springboot并不会直接启动这些配置文件,它默认使用application.properties主配置文件;我们需要通过一个配置来选择需要激活的环境:spring.profiles.active=devspring.profiles.active可以指定配置环境,如指...
继续阅读 >