SpringBoot 的@Value注解,高级特性,真心强大!
共 5303字,需浏览 11分钟
·
2021-03-29 11:51
在日常开发中,经常会遇到需要在配置文件中,存储 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 List
java.lang.IllegalArgumentException: Could not resolve placeholder 'test.list' in value "${test.list}"
test.list
为例,新建一个 test
的配置类,将 list
作为该配置类的一个属性:@Configuration
@ConfigurationProperties("test")
public class TestListConfig {
private List
public List
return list;
}
public void setList(List
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
表达式。.yml
文件为例,我们只需要在配置文件中,跟配置数组一样去配置:test:
list: aaa,bbb,ccc
EL
表达式的 split()
函数进行切分即可。@Value("#{'${test.list}'.split(',')}")
private List
@Value("#{'${test.list:}'.split(',')}")
private List
split()
之前判断下是否为空即可。@Value("#{'${test.list:}'.empty ? null : '${test.list:}'.split(',')}")
private List
test:
set: 111,222,333,111
`@Value("#{'${test.set:}'.empty ? null : '${test.set:}'.split(',')}")
private Set
// output: [111, 222, 333]
test:
map1: '{"name": "zhangsan", "sex": "male"}'
map2: '{"math": "90", "english": "85"}'
@Value("#{${test.map1}}")
private Map
@Value("#{${test.map2}}")
private Map
public class MapDecoder {
public static Map
try {
return JSONObject.parseObject(value, new TypeReference<map
} catch (Exception e) {
return null;
}
}
}
@Value("#{T(com.github.jitwxs.demo.MapDecoder).decodeMap('${test.map1:}')}")
private Map
@Value("#{T(com.github.jitwxs.demo.MapDecoder).decodeMap('${test.map2:}')}")
private Map
@Value
注解不能和 @AllArgsConstructor
注解同时使用,否则会报错Consider defining a bean of type 'java.lang.String' in your configuration
这种做法唯一不优雅的地方就是,这样写出来的 @Value
的内容都很长,既不美观,也不容易阅读。
来自:https://jitwxs.cn/d6d760c4.html
推荐阅读
• 955 互联网公司白名单来了!这些公司月薪20k,没有996!福利榜国内大厂只有这家!
• 基于SpringBoot 的CMS系统,拿去开发企业官网真香
• 徒手撸了一个RPC框架,理解更透彻了,代码已上传github,自取~