使用Springboot读取自己的属性文件

时间:2018-05-03 13:56:34

标签: java spring spring-boot properties

如何在spring-boot中使用自己的.properties文件。我不想使用application.properties。我必须从那里排除一些属性。那有没有注释?

2 个答案:

答案 0 :(得分:1)

使用@PropertySource(ignoreResourceNotFound = true, value = "classpath:yourproperties.properties")

您可以关注此stackoverflow线程 https://stackoverflow.com/a/47178674/7538821

答案 1 :(得分:0)

@PropertySource("classpath:custom.properties")

在你的课上,我建议.yml文件而不是属性,这将提供更多的灵活性