【SpringBoot】配置文件的加载与属性值的绑定

本文涉及的产品
全局流量管理 GTM,标准版 1个月
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
云解析 DNS,旗舰版 1个月
简介: 【SpringBoot】配置文件的加载与属性值的绑定

Part1Question


在使用SpringBoot过程中你是否会有以下疑问?

  • 具体有多少种配置属性源的方式呢?
  • 为何使用@Value 注解就能够获取到属性源中的值呢?
  • 属性源这么多,如果属性相同的话 那么用哪个值呢?
  • 属性源是如何绑定到我们的程序中的呢?

本篇文章会针对以上问题逐个分析

Part2Answer


我们的所有属性源都存放在AbstractEnvironment中的属性propertySources中; 每加载一个属性源就会往里面塞一个propertySource; 然后当我们需要取某个属性的时候,就会从这个propertySources遍历查找,找到就返回; 所以我们就可以知道,如果多个属性源中有相同的属性,那么肯定是排在最前面的被找到就会返回,优先级最高; 那么这是整个背景; 我们现在来分析具体的问题

1具体有多少种配置属性源的方式呢?

以下优先级由高到低

  1. 命令行方式java -jar xx.jar --spring.profiles.active=pro&关于命令行的详细请看文章 【SpringBoot 一】SpringApplication启动类的Args详解
  2. 如果是以web方式启动的还会有 {servletConfigInitParamsservletContextInitParams}
  3. spring.application.json 外部json配置 在启动之初,SpringBoot会去当前的属性源(这个时候还只有systemPropertiessystemEnvironment)中查找有没有spring.application.json或者SPRING_APPLICATION_JSON的属性值;如果有则会把对应的值按照Json的格式解析成对应的属性源;例如:java -jar xx.jar --spring.application.json='{"foo":"bar"}'java -jar xx.jar -Dspring.application.json={\"foo\":\"888\"}如果这2种方式都用,那么以第一种命令行的方式为准,它的优先级更高
  4. systemProperties  JVM属性源; 使用方式就是java -jar xx.jar -Dmyname=src
  5. systemEnvironment系统环境变量属性源
  6. random随机数属性源 RandomValuePropertySource我们可以通过获取属性key =  random.int 来获取随机值
  7. 配置文件属性源 application.properties这样的配置文件
  8. 注解@PropertySources的属性源
  9. 通过SpringApplication.setDefaultProperties声明的默认属性源;

|方式  |用法  |描述| |--|--|--|--| | 命令行方式(启动的Args参数) | java -jar xx.jar --spring.profiles.active=pro |args用法详解| |spring.application.json 外部json配置|java -jar xx.jar --spring.application.json='{"foo":"bar"}'   java -jar xx.jar -Dspring.application.json={"foo":"888"}|在启动之初,SpringBoot会去当前的属性源(这个时候还只有systemProperties、systemEnvironment)中查找有没有spring.application.json或者SPRING_APPLICATION_JSON的属性值;如果有则会把对应的值按照Json的格式解析成对应的属性源| |JVM属性源|java -jar xx.jar -Dmyname=src| | |系统环境变量属性源|自动读取环境变量属性| |随机数属性源 RandomValuePropertySource|random.int 、random.long、random.int.5,100; 、|在SpringBoot中使用以上key可以获得指定的随机值| |配置文件application.properties||| |注解@PropertySources的属性源|可以把属性配置在另外单独的文件中,使用注解也可以加载为属性源|| |SpringApplication.setDefaultProperties声明的默认属性源|||

2属性源这么多,如果属性相同的话 那么用哪个值呢?

属性源是一个List,读取的时候是遍历List; 先读取到的立马返回; 优先级的顺序是上面1-9种方式;

3为何使用@Value 注解就能够获取到属性源中的值呢?

我们先介绍一下@Value的几种常用用法

       //常量
   @Value("#{1}")
   privateint constant;

   //从属性源取值
   @Value("${test.name}")
   private String name;

   //从属性源取值
   @Value("${test.name2: defaultname}")
   private String namedefault;

   //从容器中获取bean的的属性值
   @Value("#{developerProperty.name}")
   private String dname;

   //从指定属性源获取属性值(jvm属性)
   @Value("#{systemProperties['spring.application.json']}")
   private String systemPropertiesjson;

   //从指定属性源获取属性值(系统环境属性源)
   @Value("#{systemEnvironment['HOME']}")
   private String systemEnvironmentHOME;

   //从指定属性源获取属性值 默认值
   @Value("#{systemEnvironment['HOME22']?:'default'}")
   private String systemEnvironmentHOMEdefault;

   //获取随机值
   @Value("${random.int.5,100;}")
   private Integer randomint;

SpringBoot 中 @Value 源码解析

4属性源是如何绑定到我们的程序中的呢?

先看看用法;  下面是SpringBoot启动过程中 将配置spring.main开头的属性 绑定到 SpringApplication中的用法

protectedvoidbindToSpringApplication(ConfigurableEnvironment environment) {
 try {
  Binder.get(environment).bind("spring.main", Bindable.ofInstance(this));
 }
 catch (Exception ex) {
  thrownew IllegalStateException("Cannot bind to SpringApplication", ex);
 }
}

绑定到实例中

那我们自己来写一个demo将配置文件的属性值绑定到某个类实例中;

publicclassBinderTest {


   private String bname;

   private Integer bage;

   private BinderInnerTest binderInnerTest;


   public String getBname() {
       return bname;
   }

   publicvoidsetBname(String bname) {
       this.bname = bname;
   }

   public Integer getBage() {
       return bage;
   }

   publicvoidsetBage(Integer bage) {
       this.bage = bage;
   }

   public BinderInnerTest getBinderInnerTest() {
       return binderInnerTest;
   }

   publicvoidsetBinderInnerTest(BinderInnerTest binderInnerTest) {
       this.binderInnerTest = binderInnerTest;
   }

   publicstaticclassBinderInnerTest{

       private String innerName;

       private Integer innerage;

       public String getInnerName() {
           return innerName;
       }

       publicvoidsetInnerName(String innerName) {
           this.innerName = innerName;
       }

       public Integer getInnerage() {
           return innerage;
       }

       publicvoidsetInnerage(Integer innerage) {
           this.innerage = innerage;
       }
   }


}


PS:上面要注意. set get 不能少,  而且如果是内部类,必须要是  public static class 否则内部类的属性不会正确绑定的!

配置文件

binder.test.bname=bindname

binder.test.bage=18

binder.test.binderInnerTest.innerName=bindInnername

binder.test.binderInnerTest.innerage=28

绑定


BindResult<BinderTest> result = Binder.get(environment).bind("binder.test", Bindable.of(BinderTest.class));
System.out.println(result);

绑定成功为何 binder.test 这种前缀就能把实例属性给绑定上呢? Binder属性绑定源码解析 TODO。。。。

有没有觉得这种方式很熟悉?SpringBoot 中有个注解@ConfigurationProperties(prefix = "") 的功能是不差不多?也是将属性值绑定到实例中去; 那么它是怎么实现的呢? 是不是也是通过Binder的方式实现的? 答案是肯定的,贴一个关键代码 ConfigurationPropertiesBinder

publicvoidbind(Bindable<?> target) {
 ConfigurationProperties annotation = target
   .getAnnotation(ConfigurationProperties.class);
 Assert.state(annotation != null,
   () -> "Missing @ConfigurationProperties on " + target);
 List<Validator> validators = getValidators(target);
 BindHandler bindHandler = getBindHandler(annotation, validators);
 getBinder().bind(annotation.prefix(), target, bindHandler);
}

详细分析 ConfigurationProperties TODO..

绑定到List中

配置文件

binder.test2.list[0]=valuea

binder.test2.list[1]=valueb

binder.test2.list[2]=valuec

binder.test2.list[3]=valued

PS: 数组index 必须连续

绑定

       
   BindResult<List<String>> resultlist = Binder.get(environment).bind("binder.test2.list", Bindable.listOf(String.class));

绑定成功

绑定到Map中

配置文件

binder.test3.a=a
binder.test3.b=b
binder.test3.c=c

绑定


   BindResult<Map<String, String>> resultmap = Binder.get(environment).bind("binder.test3", Bindable.mapOf(String.class,String.class));

绑定成功

PS: 如果多个属性源中有相同的属性源前缀会如何?那么会按照属性源的优先级绑定;后面的不再绑定

相关文章
|
12天前
|
Java 数据库连接 数据库
springboot启动配置文件-bootstrap.yml常用基本配置
以上是一些常用的基本配置项,在实际应用中可能会根据需求有所变化。通过合理配置 `bootstrap.yml`文件,可以确保应用程序在启动阶段加载正确的配置,并顺利启动运行。
24 2
|
23天前
|
Java Spring 容器
SpringBoot读取配置文件的6种方式,包括:通过Environment、@PropertySource、@ConfigurationProperties、@Value读取配置信息
SpringBoot读取配置文件的6种方式,包括:通过Environment、@PropertySource、@ConfigurationProperties、@Value读取配置信息
46 3
|
1月前
|
druid Java Maven
|
1月前
|
架构师 Java 开发者
得物面试:Springboot自动装配机制是什么?如何控制一个bean 是否加载,使用什么注解?
在40岁老架构师尼恩的读者交流群中,近期多位读者成功获得了知名互联网企业的面试机会,如得物、阿里、滴滴等。然而,面对“Spring Boot自动装配机制”等核心面试题,部分读者因准备不足而未能顺利通过。为此,尼恩团队将系统化梳理和总结这一主题,帮助大家全面提升技术水平,让面试官“爱到不能自已”。
得物面试:Springboot自动装配机制是什么?如何控制一个bean 是否加载,使用什么注解?
|
1月前
|
Java 测试技术 Spring
springboot学习三:Spring Boot 配置文件语法、静态工具类读取配置文件、静态工具类读取配置文件
这篇文章介绍了Spring Boot中配置文件的语法、如何读取配置文件以及如何通过静态工具类读取配置文件。
60 0
springboot学习三:Spring Boot 配置文件语法、静态工具类读取配置文件、静态工具类读取配置文件
|
1月前
|
Java 应用服务中间件 Maven
SpringBoot Maven 项目打包的艺术--主清单属性缺失与NoClassDefFoundError的优雅解决方案
SpringBoot Maven 项目打包的艺术--主清单属性缺失与NoClassDefFoundError的优雅解决方案
330 0
|
1月前
|
Java Shell C++
Springboot加载注入bean的方式
本文详细介绍了Spring Boot中Bean的装配方法。首先讲解了使用@Component、@Service、@Controller、@Repository等注解声明Bean的方式,并解释了这些注解之间的关系及各自适用的层次。接着介绍了通过@Configuration和@Bean注解定义Bean的方法,展示了其灵活性和定制能力。最后讨论了@Component与@Bean的区别,并提供了在Spring Boot应用中装配依赖包中Bean的三种方法:使用@ComponentScan注解扫描指定包、使用@Import注解导入特定Bean以及在spring.factories文件中配置Bean。
|
2月前
|
消息中间件 NoSQL 安全
(转)Spring Boot加载 不同位置的 application.properties配置文件顺序规则
这篇文章介绍了Spring Boot加载配置文件的顺序规则,包括不同位置的application.properties文件的加载优先级,以及如何通过命令行参数或环境变量来指定配置文件的名称和位置。
|
3月前
|
缓存 Java 数据库连接
Spring Boot 资源文件属性配置,紧跟技术热点,为你的应用注入灵动活力!
【8月更文挑战第29天】在Spring Boot开发中,资源文件属性配置至关重要,它让开发者能灵活定制应用行为而不改动代码,极大提升了可维护性和扩展性。Spring Boot支持多种配置文件类型,如`application.properties`和`application.yml`,分别位于项目的resources目录下。`.properties`文件采用键值对形式,而`yml`文件则具有更清晰的层次结构,适合复杂配置。此外,Spring Boot还支持占位符引用和其他外部来源的属性值,便于不同环境下覆盖默认配置。通过合理配置,应用能快速适应各种环境与需求变化。
45 0
|
Java 应用服务中间件 Maven
传统maven项目和现在spring boot项目的区别
Spring Boot:传统 Web 项目与采用 Spring Boot 项目区别
493 0
传统maven项目和现在spring boot项目的区别
下一篇
无影云桌面