最近在搞微服务,要使用一个config的配置,把gitee作为配置中心,但是在启动moudle中报错了?
上边这幅图是在application.yml中配置的,读取gitee中的文件;
gitee仓库如下图所示:
其中,cloud-client.yml的文件内容是:
name: "may"
疑问:但是我在启动modle过程中,报错了?
Error creating bean with name 'serverController': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'name' in value "${name}"
然后我检查了,配置模块下的controller,
@RestController
public class ServerController {
@Value("${name}")
private String name;
@RequestMapping("/name")
public String getName(){
return name;
}
}
现在我查了半天,也没有找到报错的原因。谢谢大佬
登录密码需要使用 Personal AccessToken