spring cloud config server端接收到远程仓库端消息之后,无法将消息传递到config client端的问题

远程仓库中配置了webhooks之后,发送请求,在config server端的日志中提示

DiscoveryClient_CONFIG/localhost:config:8083 - registration status: 204

意思是请求发送了,但没有响应,通过以下解决

在config client客户端的配置文件中添加如下

spring.cloud.bus.id="${vcap.application.name:${spring.application.name:application}}:${vcap.application.instance_index:${spring.cloud.config.profile:${local.server.port:${server.port:0}}}}:${vcap.application.instance_id:${random.value}}"

将上面${spring.application.name:application}中的application修改为config client的name

将${server.port:0}中的0修改为config server的端口号即可

你可能感兴趣的:(spring,cloud)