@ConfigurationProperties绑定配置信息至Array、List、Map、Bean
声明:本文主要以图片为主进行说明。测试项目代码托管链接在文末。相关说明:在SpringBoot中,我们可以通过以下几种方式获取并绑定配置文件中的信息:@Value注解。使用Environment。@ConfigurationProperties注解。通过实现ApplicationListener接口,注册监听器,进行硬编码获取,可参考https:...
声明:本文主要以图片为主进行说明。测试项目代码托管链接在文末。
相关说明:
在SpringBoot中,我们可以通过以下几种方式获取并绑定配置文件中的信息:
-
@Value注解。
-
使用Environment。
-
@ConfigurationProperties注解。
-
通过实现ApplicationListener接口,注册监听器,进行硬编码获取,可参考https://blog.csdn.net/thc1987/article/details/78789426。
-
硬编码加载文件获取。
-
……
注:一般情况下,第一种、第二种就够用了;但是如果想直接从配置文件中获取到数组、list、map、对象的话,
第一种和第二种的支持性不太好,目前只能获取到数组、list,对map、bean的话,就有点束手无策了。
这时我们可以使用第三种方式进行获取。
环境说明:Windows10、IntelliJ IDEA、SpringBoot 2.1.5.RELEASE
@ConfigurationProperties注解获取配置信息并绑定到对象上示例:
准备工作:引入spring-boot-configuration-processor依赖
给出本人完整的pom.xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.aspire.yaml-properties</groupId>
<artifactId>yaml-properties</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>yaml文件与properties文件语法示例</name>
<description>yaml文件与properties文件语法示例</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
加载demo.properties文件中的信息绑定到bean,并注入容器示例:
项目结构说明:
注:application.yml其实在本次演示中,没有用到。不过本人给出了如何在yml文件中进行类似配置的
示例(见本文末尾)。
追注:如果要读取的是yml或yaml中的文件,那么最好是直接写在application.yml或
application.yaml文件中,写在其他yml文件中的话,可能导致读取失败。
(P.S.如果是写在其他yml或yaml文件中的话,只能通过最后一级key进行
定位,通过多级key可能定位不到。)
先给出一个等下会用到的Uer类:
注:上图中的注解是快速开发lombok注解,也可以不使用这些注解,自己写getter、setter等方法。
DemoConfig中是这样的:
注:上图中的@Data注解属于快速开发lombok注解,该注解不是必须的,也可以不要该注解,自己手写
getter、setter、toString等。
deme.properties中是这样的:
测试一下:
运行测试方法,控制台输出(为了方便观察,本人手动换行整理了一下输出的内容):
由此可见,成功将demo.peoperties文件中的信息绑定到bean上,并注入Spring容器成功!
拓展:
如果是application.yml(或application.yaml)文件,类似的,我们可以这么配置:
补充:
@Value的属性填充, 是在populateBean时, 由AutowiredAnnotationBeanPostProcessor注入填充的;而@ConfigurationProperties的属性填充,是在initializeBean时, 由ConfigurationPropertiesBindingPostProcessor注入填充的;所以, 如果一个字段,既能被@Value填充, 又能被@ConfigurationProperties填充的话,那么最终的填充值,是由后进行填充的@ConfigurationProperties决定的。
^_^ 如有不当之处,欢迎指正
^_^ 参考链接
https://blog.csdn.net/thc1987/article/details/78789426
^_^ 测试代码托管链接
https://github.com/JustryDeng/CommonRepository/tree/master
^_^ 本文已经被收录进《程序员成长笔记(四)》,笔者JustryDeng
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
所有评论(0)