今天给大家分享冷门但是有很实小知识,Spring 配置文件注入list、map、字节流。
list 注入
properties文件
user.id=3242,2323,1
使用spring el表达式
@Value(“#{‘${user.id}’.split(‘,’)}”)
private Listlist;
yaml 文件
在yml配置文件配置数组方式
1 | number: |
@Value(“${number.arrays}”)
private List list
虽然网上都说,这样可以注入,我亲身实践过了,肯定是不能的。会抛出 Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'number.arrays' in value "${number.arrays}"
异常。要想注入必须要使用@ConfigurationProperties
1 | "number") (prefix = |
不是想这么麻烦,可以像properties文件写法,使用el表达式即可
1 | number: |
@Value(“#{‘${number.arrays}’.split(‘,’)}”)
private List arrays;
注入文件流
1 | "classpath: application.yml") ( |
从类路径加载application.yml
文件将文件注入到org.springframework.core.io.Resource
,可以使用getInputStream()方法获取流。比起使用类加载器获取路径再去加载文件的方式,优雅、简单不少。
Map Key Value 注入
properties
resource.code.mapper={x86:”hostIp”}
@Value(“#{${resource.code.mapper}}”)
private Map<String, String> mapper;
成功注入
yaml
在yaml文件中,使用@Value
不能注入Map 实例的,要借助@ConfigurationProperties
才能实现。
1 | "blog") (prefix = |
配置文件
1 | blog: |
可以看出@ConfigurationProperties
注入功能远比@Value
强,不仅能注入List、Map这些,还能注入对象属性,静态内部类属性,这个在Spring Boot Redis模块 org.springframework.boot.autoconfigure.data.redis.RedisProperties
体现出来。
区别
区别 | @ConfigurationProperties | @Value |
---|---|---|
类型 | 各种复制类型属性Map、内部类 | 只支持简单属性 |
spEl表达式 | 不支持 | 支持 |
JSR303数据校验 | 支持 | 不支持 |
功能 | 一个列属性批量注入 | 单属性注入 |