Yaml配置文件问题记录

1.通过 @Value("${TestTime.isTestData}")注解获取application.yml配置文件中的值为null。

-原因:因为@Value注解无法对普通类注入属性,所以需要在类中加入@Configuration或@Component来让spring管理该类.

2.通过

@Component
@ConfigurationProperties("scheduledParam")配置注解类的时候IDE报错,显示Inspection info: Verifies @ConfigurationProperties setup. New in 2018.3

-原因:因为@ConfigurationProperties注解取的值是application.yml文件中的第一级部分scheduledParam,而@ConfigurationProperties注解是不支持驼峰式命名和下划线式命名。

 

你可能感兴趣的:(Java,yaml)