说明:
在SpringBoot 2.4.x版本之后,对于bootstrap.properties/bootstrap.yaml配置文件的支持,需要导入如下依赖:
<!-- 支持 bootstrap.properties 或 bootstrap.yml 配置文件 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
<version>3.1.3</version>
</dependency>
注意:
1、导入依赖后,还需要开启 spring.cloud.bootstrap.enabled=true
2、spring cloud starter alibaba nacos config,引用这个配置中心的依赖后,需要使用bootstrap.yml或bootstrap.properties 作为中转配置文件文章来源:https://www.toymoban.com/news/detail-638601.html
3、不同类型配置文件读取优先级:bootstrap.yml/bootstrap.properties > application.yml/application.properties文章来源地址https://www.toymoban.com/news/detail-638601.html
到了这里,关于SpringBoot支持bootstrap.yml/bootstrap.properties配置文件,需要导入spring-cloud-starter-bootstrap依赖的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!