js css html

springboot指定配置文件

2024-01-21  本文已影响0人  King斌

使用 PropertySource 注解

如果在其他自动装配的类中使用了该配置类,就需要使用 AutoConfiguration 注解加入 before 参数,否则获取的参数为null

classpath 默认为项目下的resource目录

在项目目录中的配置会覆盖依赖中的配置

@AutoConfiguration(before = MailConfig.class)
@PropertySource(value = "classpath:common-mail.yml", factory = YmlPropertySourceFactory.class)
@ConfigurationProperties(prefix = "mail")
public class MailProperties {
}
上一篇 下一篇

猜你喜欢

热点阅读