再来个文章目录
文章目录
下面还有投票,帮忙投个票👍
前言
最近在看某个开源项目代码并准备参与其中,代码过了一遍后发现多个自定义的配置文件用来装载业务配置代替数据库查询,直接响应给前端,这里简单记录一下实现过程。
我们通常在SpringBoot项目中用配置文件属性时使用@ConfigurationProperties或@Value默认配置文件的属性值,也就是application.yml或者application.properties文件中的属性值。
但是不能全都往默认配置文件里堆的,本文利用@PropertySource和@ConfigurationProperties注解引用其它配置文件的属性值。
1、自定义配置文件
在resources下创建my.yaml文件,“-”用来表示数组类型,一定要注意空格。
my:
contents:- id:12121
name: nadasd
- id:3333
name: vfffff
2、配置对象类
创建配置类对象,在类上添加@Component、@PropertySource、@ConfigurationProperties注解。
@Component是将该类交由spring管理,@PropertySource用来指定配置文件及解析Yaml格式,@ConfigurationProperties是将解析后的配置文件属性自动注入该类的属性。
importorg.springframework.boot.context.properties.ConfigurationProperties;importorg.springframework.context.annotation.PropertySource;importorg.springframework.stereotype.Component;importjava.util.ArrayList;importjava.util.List;@Component@PropertySource(value ="classpath:my.yaml", factory =YamlPropertiesSourceFactory.class)@ConfigurationProperties(prefix ="my")publicclassMyProperties{privateList<content> contents =newArrayList<>();publicList<content>getContents(){return contents;}publicvoidsetContents(List<content> contents){this.contents = contents;}}class content {privateString id;privateString name;publicStringgetId(){return id;}publicvoidsetId(String id){this.id = id;}publicStringgetName(){return name;}publicvoidsetName(String name){this.name = name;}}
@PropertySource注解是Spring用于加载配置文件,@PropertySource属性如下:
- name:默认为空,不指定Spring自动生成
- value:配置文件
- ignoreResourceNotFound:没有找到配置文件是否忽略,默认false,4.0版本加入
- encoding:配置文件编码格式,默认UTF-8 4.3版本才加入
- factory:配置文件解析工厂,默认:PropertySourceFactory.class 4.3版本才加入,如果是之前的版本就需要手动注入配置文件解析Bean
Spring Boot 默认不支持@PropertySource读取yaml 文件,需要自定义PropertySourceFactory进行解析。
3、YamlPropertiesSourceFactory
创建YamlPropertiesSourceFactory类用来解析Yaml格式的文件。
importorg.springframework.boot.env.YamlPropertySourceLoader;importorg.springframework.core.env.PropertySource;importorg.springframework.core.io.support.EncodedResource;importorg.springframework.core.io.support.PropertySourceFactory;importjava.io.IOException;importjava.util.List;importjava.util.Optional;publicclassYamlPropertiesSourceFactoryimplementsPropertySourceFactory{@OverridepublicPropertySource<?>createPropertySource(String name,EncodedResource resource)throwsIOException{String resourceName =Optional.ofNullable(name).orElse(resource.getResource().getFilename());List<PropertySource<?>> yamlSources =newYamlPropertySourceLoader().load(resourceName, resource.getResource());return yamlSources.get(0);}}
版权归原作者 叫我二蛋 所有, 如有侵权,请联系我们删除。