springboot哪個jar包在讀取 yml文件
求教大神,springboot哪個jar包在讀取 yml文件?
天涯盡頭無女友
2019-11-26 18:15:55
TA貢獻1843條經驗 獲得超7個贊
@EnableConfigurationProperties注解里指出的PropsConfig.class,YmlConfig.class分別就是讀取props和yml配置文件的類。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
舉報