springboot会自动去加载application.properties/application.yml中的配置,如果我们需要去切换到其他文件的配置,只需要在application.properties中去设置。
例如:
现在有一个测试环境和一个正式环境,我们现在要将正式环境切换成测试环境,一般起名字为application-环境名.properties
application-test.properties
application.properties
在application.properties中配置spring.profiles.active=test
也可以在yml中配置
spring
profiles
active: test
spring
profiles: test
spring
profiles: dev
用---去分割不同环境下的配置文件,然后在最顶上配置
spring
profiles
active: test
还可以用命令行去配置,这里省略...
2019-01-07