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

spring cloud远程配置 Could not resolve placeholder 'gname' in value "${gname}"

程序员文章站 2022-06-01 09:11:16
...

今天在学习spring cloud config 配置中心,把配置文件放git 上,然后在client端出现了这个报错:spring cloud远程配置 Could not resolve placeholder 'gname' in value "${gname}"
config client配置文件application.yml:spring cloud远程配置 Could not resolve placeholder 'gname' in value "${gname}"
config client的Controller:

@RefreshScope
@RestController
public class ConfigController {
    
    @Value("${gname}")
    String gname;

    @RequestMapping("/config")
    public String printfConfig(){
        return gname;
    }
}

在 github上面的配置文件名 configclean-test.properties,启动config service 端,在浏览器上能访问到github上面的文件内容。但是在config client 端编译的时候出现了这个错误。
原因:spring boot是启动的时候才从配置文件中读取配置属性,配置文件在远程配置中心的话,注册中心的信息需要放在bootstrap.properties中才能启动优先读取,放在application.properties.会报该异常没发现属性

所以修改config client 端配置文件名为 bootstrap.yml ,重新编译 正常。。。。