spring-boot-configuration-processor的作用

面试:你懂什么是分布式系统吗?Redis分布式锁都不会?>>>   hot3.png

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

先引入pom依赖


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

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

你可能感兴趣的:(spring-boot-configuration-processor的作用)