欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring.config.location 配置无效

程序员文章站 2022-04-06 18:49:01
...

在项目下新建bootstrap.yml(或bootstrap.properties)文件,将spring.config.location配置在次文件中。

 

说明: bootstrap文件会优先于application.properties加载,所以引导类型的配置都配置在这里。

 

如果bootstrap.yml依然无效,可以使用注解:@PropertySource

@PropertySource(value={"file:C://Users//Administrator//Desktop//properties//manage-application.properties"},ignoreResourceNotFound=true)