SpringBoot 的@Value注解太强大了,用了都说爽!
共 5447字,需浏览 11分钟
·
2021-05-10 20:22
阅读本文大概需要 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 List<String> testList;
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<String> list;
public List<String> getList() {
return list;
}
public void setList(List<String> 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
表达式。3.1 解析 List
.yml
文件为例,我们只需要在配置文件中,跟配置数组一样去配置:test:
list: aaa,bbb,ccc
EL
表达式的 split()
函数进行切分即可。@Value("#{'${test.list}'.split(',')}")
private List<String> testList;
@Value("#{'${test.list:}'.split(',')}")
private List<String> testList;
split()
之前判断下是否为空即可。@Value("#{'${test.list:}'.empty ? null : '${test.list:}'.split(',')}")
private List<String> testList;
3.2 解析 Set
test:
set: 111,222,333,111
`@Value("#{'${test.set:}'.empty ? null : '${test.set:}'.split(',')}")
private Set<Integer> testSet;
// output: [111, 222, 333]
3.3 解析 Map
test:
map1: '{"name": "zhangsan", "sex": "male"}'
map2: '{"math": "90", "english": "85"}'
@Value("#{${test.map1}}")
private Map<String,String> map1;
@Value("#{${test.map2}}")
private Map<String,Integer> map2;
public class MapDecoder {
public static Map<String, String> decodeMap(String value) {
try {
return JSONObject.parseObject(value, new TypeReference<Map<String, String>>(){});
} catch (Exception e) {
return null;
}
}
}
@Value("#{T(com.github.jitwxs.demo.MapDecoder).decodeMap('${test.map1:}')}")
private Map<String, String> map1;
@Value("#{T(com.github.jitwxs.demo.MapDecoder).decodeMap('${test.map2:}')}")
private Map<String, String> map2;
四、后续
@Value
注解不能和 @AllArgsConstructor
注解同时使用,否则会报错Consider defining a bean of type 'java.lang.String' in your configuration
@Value
的内容都很长,既不美观,也不容易阅读。推荐阅读:
是时候装逼了,试试 IDEA 解决 Maven 依赖冲突的高能神器!
最近面试BAT,整理一份面试资料《Java面试BATJ通关手册》,覆盖了Java核心技术、JVM、Java并发、SSM、微服务、数据库、数据结构等等。
朕已阅