- 在
@EnableConfigurationProperties
取消激活自定义的配置类 - 在配置类中采用
@Component
的方式注册为组件,然后使用@PropertySource
来指定自定义的资源目录@Component@ConfigurationProperties(prefix = "author")@PropertySource("classpath:author.properties")public class AuthorSetting {}
本文共 278 字,大约阅读时间需要 1 分钟。
@EnableConfigurationProperties
取消激活自定义的配置类@Component
的方式注册为组件,然后使用@PropertySource
来指定自定义的资源目录 @Component@ConfigurationProperties(prefix = "author")@PropertySource("classpath:author.properties")public class AuthorSetting {}
转载于:https://my.oschina.net/u/2262481/blog/1793714