problems_starter


目录
  • problems_starter
    • 1 SpringBoot测试类(@SpringbootTest)使用@ConfigurationProperties无法注入值
    • 2
    • 3

problems_starter

1 SpringBoot测试类(@SpringbootTest)使用@ConfigurationProperties无法注入值

@ConfigurationProperties作用:将yml/properties配置文件中的属性注入到当前类的属性,可以通过prefix指定配置前缀。
但是使用测试类 (加了注解@SpringBootTest的类)测试时,始终无法将配置文件中的值注入进属性类。

RCA:
@SpringBootTest注解的测试类,是无法注入属性的,只有在@SpringBootApplication注解的启动类启动时,才能正常注入属性。

2

3