spring默认使用yml中的配置,但有时候要用传统的xml或properties配置,就需要使用spring-boot-configuration-processor了
先引入pom依赖
org.springframework.boot spring-boot-configuration-processor true
再在你的配置类开头加上@PropertySource("classpath:your.properties"),其余用法与加载yml的配置一样
本文共 358 字,大约阅读时间需要 1 分钟。
spring默认使用yml中的配置,但有时候要用传统的xml或properties配置,就需要使用spring-boot-configuration-processor了
先引入pom依赖
org.springframework.boot spring-boot-configuration-processor true
再在你的配置类开头加上@PropertySource("classpath:your.properties"),其余用法与加载yml的配置一样
转载于:https://blog.51cto.com/14009535/2364832