spring默认使用yml中的配置,但有时候要用传统的xml或properties配置,就需要使用spring-boot-configuration-processor了

先引入pom依赖

 
org.springframework.boot
 
spring-boot-configuration-processor
 
true

再在你的配置类开头加上@PropertySource("classpath:your.properties"),其余用法与加载yml的配置一样