其他分享
首页 > 其他分享> > 015.SpringBoot配置文件(Resource目录下)

015.SpringBoot配置文件(Resource目录下)

作者:互联网

1.这是springboot内置的,像application.properties也是内置的。

   很多框架都会有约定好的一些配置文件名字,比如logback日志框架会识别logback.xml等

   软件编程有一个原则:约定优于配置。

 

 

2.SpringBoot会自动识别下面这组配置文件
    application.properties/yml
    config/application.properties/yml
    如果是SpringCloud,还会自动识别下面这组配置文件:
    bootstrap.properties/yml
    config/bootstrap.properties/yml

 

3.注意:单个SpringBoot不会读bootstrap配置,要SpringCloud架构下的SpringBoot才会读。

   bootstrap配置文件一般用于动态配置,线上可以实时修改,实时生效的配置,一般可配合nacos使用

 

标签:Resource,SpringBoot,配置文件,bootstrap,properties,application,015,yml
来源: https://www.cnblogs.com/LLL0617/p/15536352.html