springboot注入yml配置文件 list报错
springboot中yml配置注入一般使用@Value注解可注入String类型数据,比如:
@Value("${config}")
String stringConfig;
即可注入属性,而注入list使用此方法则会报错提示Could not resolve placeholder xxx。
注入list的正确方法
配置文件实例
list-config:
config:
- companyId
- userId
- originId
注入姿势
@ConfigurationProperties(prefix = "list-config")
@Component
@Setter
public class VisitorSourceController implements VisitorSourceApi {
List<String> config;
}
注意:必须在类上添加Lombok的@Setter注解或者加上属性set方法,否则config属性会获取到null。
springboot yml 配置文件注入Map,List
person:
lastName: hello
age: 18
boss: false
birth: 2017/12/12
maps: {k1: v1,k2: 12}
lists:
- lisi
- zhaoliu
dog:
name: 小狗
age: 12
@Component
@ConfigurationProperties(prefix = "person")
public class Person {
private String lastName;
private Integer age;
private Boolean boss;
private Date birth;
private Map<String,Object> maps;
private List<Object> lists;
private Dog dog;
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。