因此,我正在使用替代方法来调试两个特定的微服务。
我正在运行这些微服务的本地副本,并添加了以下替代。
对于第一个微服务,它似乎运行良好,但是对于第二个微服务,它却无法运行。
它们都使用伪装服务名称。
属性文件:
ab-consult-proxy.NIWSServerListClassName: com.netflix.loadbalancer.ConfigurationBasedServerList
ab-consult-proxy.ribbon.listOfServers: localhost:8080
ab-search.ribbon.NIWSServerListClassName:com.netflix.loadbalancer.ConfigurationBasedServerList
ab-search.ribbon.listOfServers: localhost:8025
假客户:
@FeignClient(name="ab-consult-proxy")
public interface AbControllerApiClient{
@FeignClient(name = "ab-search")
public interface AbSearchClient {
有人有什么想法吗?