SpringBoot 的@Value注解,高级特性,真心强大!
共 3777字,需浏览 8分钟
·
2021-02-09 09:01
阅读本文大概需要 4 分钟。
来自:https://jitwxs.cn/d6d760c4.html
List
或是 Map
这种类型的数据。List
类型为例,对于 .yml
文件配置如下:test:
list:
- aaa
- bbb
- ccc
.properties
文件配置如下所示:test.list[0]=aaa
test.list[1]=bbb
test.list[2]=ccc
@Value
注解去读取这个值,就像下面这种写法一样:@Value("${test.list}")
private ListtestList;
java.lang.IllegalArgumentException: Could not resolve placeholder 'test.list' in value "${test.list}"
test.list
为例,新建一个 test
的配置类,将 list
作为该配置类的一个属性:@Configuration
@ConfigurationProperties("test")
public class TestListConfig {
private Listlist;
public ListgetList() {
return list;
}
public void setList(Listlist) {
this.list = list;
}
}
@Autowired
private TestListConfig testListConfig;
// testListConfig.getList();
二、数组怎么样
test:
array1: aaa,bbb,ccc
array2: 111,222,333
array3: 11.1,22.2,33.3
@Value("${test.array1}")
private String[] testArray1;
@Value("${test.array2}")
private int[] testArray2;
@Value("${test.array3}")
private double[] testArray3;
@Value("${test.array1:}")
private String[] testArray1;
@Value("${test.array2:}")
private int[] testArray2;
@Value("${test.array3:}")
private double[] testArray3;
:
号,冒号后的值表示当 key 不存在时候使用的默认值,使用默认值时数组的 length = 0。不需要写配置类 使用逗号分割,一行配置,即可完成多个数值的注入,配置文件更加精简
业务代码中数组使用很少,基本需要将其转换为 List,去做 contains、foreach 等操作。
三、替代方法
EL
表达式。3.1 解析 List
.yml
文件为例,我们只需要在配置文件中,跟配置数组一样去配置:test:
list: aaa,bbb,ccc
EL
表达式的 split()
函数进行切分即可。@Value("#{'${test.list}'.split(',')}")
private ListtestList;
@Value("#{'${test.list:}'.split(',')}")
private ListtestList;
split()
之前判断下是否为空即可。@Value("#{'${test.list:}'.empty ? null : '${test.list:}'.split(',')}")
private ListtestList;
3.2 解析 Set
test:
set: 111,222,333,111
`@Value("#{'${test.set:}'.empty ? null : '${test.set:}'.split(',')}")
private SettestSet;
// output: [111, 222, 333]
3.3 解析 Map
test:
map1: '{"name": "zhangsan", "sex": "male"}'
map2: '{"math": "90", "english": "85"}'
@Value("#{${test.map1}}")
private Mapmap1;
@Value("#{${test.map2}}")
private Mapmap2;
public class MapDecoder {
public static MapdecodeMap(String value) {
try {
return JSONObject.parseObject(value, new TypeReference
@Value("#{T(com.github.jitwxs.demo.MapDecoder).decodeMap('${test.map1:}')}")
private Mapmap1;
@Value("#{T(com.github.jitwxs.demo.MapDecoder).decodeMap('${test.map2:}')}")
private Mapmap2;
四、后续
@Value
注解不能和 @AllArgsConstructor
注解同时使用,否则会报错Consider defining a bean of type 'java.lang.String' in your configuration
@Value
的内容都很长,既不美观,也不容易阅读。微信扫描二维码,关注我的公众号
朕已阅