如果我有很多配置和/或环境,通常我会这样做:peripheral,即使用spring.profiles.include属性。文章来源:https://www.toymoban.com/news/detail-570999.html
配置方法:
若是properties文件:spring.profiles.include=dev1,dev2
若是yaml文件中,
spring.profiles.include:
-dev1
-dev2
或者:spring.profiles.include:dev1,dev2
文章来源地址https://www.toymoban.com/news/detail-570999.html
$ cat src/main/resources/application.yml:
spring:
profiles:
include: profile1,profile2,...,profileN
到了这里,关于springboot 使用多个yml文件的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!