spring-boot-configuration-processor的作用

Springboot中默认使用的是yml配置,如果想用传统的properties进行配置,就需要使用spring-boot-configuration-processor。

引入pom依赖:


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

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

你可能感兴趣的:(Java)