我是靠谱客的博主 畅快睫毛,最近开发中收集的这篇文章主要介绍SpringBoot 配置绑定配置@ConfigurationProperties@Value@PropertySource@Value 和 @ConfigurationProperties 的区别,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

文章目录

  • 配置
  • @ConfigurationProperties
  • @Value
  • @PropertySource
  • @Value 和 @ConfigurationProperties 的区别

配置

配置文件:

person:
  lastName: 张三
  age: 18
  ...

@ConfigurationProperties

1.说明 :JavaBean 和配置文件的对应。

...
@Component
@ConfigurationProperties(prefix = "person")
public class Person {
    private String lastName;
    private Integer age;
	...
}

1.注意配合 @Component 使用。
2.prefix 指定映射的配置的前缀。

@Value

1.说明:字段值和配置的映射。

@Component
public class Person {
    @Value("${person.lastName}")
    private String lastName;
    ...
}

@PropertySource

1.说明: 指定配置文件的位置。

 
@PropertySource(value = "classpath:person.properties")//指向对应的配置文件
@Component
@ConfigurationProperties(prefix = "person")
public class Person {
    private String lastName;
    private Integer age;
    ...
} 

@Value 和 @ConfigurationProperties 的区别

1. 使用位置不同

2. 功能不同

3. 松散绑定支持不同

@ConfigurationProperties:支持松散绑定(松散语法),例如实体类 Person 中有一个属性为 lastName,那么配置文件中的属性名支持以下写法:
person.firstName
person.first-name
person.first_name
PERSON_FIRST_NAME
@Vaule:不支持松散绑定。

4. SpEL 支持不同
@ConfigurationProperties:不支持 SpEL 表达式;
@Value:支持 SpEL 表达式。

5. 复杂类型封装
@ConfigurationProperties:支持所有类型数据的封装,例如 Map、List、Set、以及对象等;
@Value:只支持基本数据类型的封装,例如字符串、布尔值、整数等类型。

6. 应用场景不同

若只是获取配置文件中的某项值,则推荐使用 @Value 注解;
若专门编写了一个 JavaBean 来和配置文件进行映射,则建议使用 @ConfigurationProperties 注解。

最后

以上就是畅快睫毛为你收集整理的SpringBoot 配置绑定配置@ConfigurationProperties@Value@PropertySource@Value 和 @ConfigurationProperties 的区别的全部内容,希望文章能够帮你解决SpringBoot 配置绑定配置@ConfigurationProperties@Value@PropertySource@Value 和 @ConfigurationProperties 的区别所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(31)

评论列表共有 0 条评论

立即
投稿
返回
顶部