Spring 具有 zookeeper 依赖项的云在第二个访问者中出现 Null 异常

Spring cloud with zookeeper dependencies get NullException in the second vister

我有一个名为

的应用程序
spring:
  application:
    name: /business/paysystem-service

我用配置

设置客户端
spring:
zookeeper:
  dependencies:
    PayService:
      path: /business/paysystem-service

所以我可以用这个名字设置假客户端注释

@FeignClient(value = "PayService")

现在我第二次访问 FeignClient 时得到 NullException。

我的springcloud版本是Finchley.SR1

完整代码我推送到github:https://github.com/kanghouchao/sample-springcloud.git

我做错了什么?

首先我更换了springcloud版本,从Finchley改到Edgware.SR5,同时springboot更换到1.5.13.RELEASE。 然后我在server端添加了spring-boot-starter-actuator依赖,运行正常了

First I changed the springcloud version from Finchley to Edgware.SR5 and springboot to 1.5.13.RELEASE. Then I added the spring-boot-starter-actuator dependency on the server side and it works fine.