2021
09-04
09-04
@PropertySource 无法读取配置文件的属性值解决方案
原来Person类这样写:只写了@PropertySource注解@Component@PropertySource(value={"classpath:person.properties"})publicclassPerson{privateStringlastName;privateintage;privatebooleanboss;privateDatebirth;privateMap<String,Object>maps;privateList<Object>lists;privateDogdog;...}运行后找不到配置文件中的值:解决方法:加上@ConfigurationProperties注解:@Comp...
继续阅读 >