在hystrix

时间:2017-04-04 15:06:23

标签: java hystrix circuit-breaker

我正在努力学习并实施hystrix断路器。 我使用了下面提到的代码。

 @Component
 public class Utils{

 @HystrixCommand(fallbackMethod = "readingList")
 public String getResponse(String restURL, String b){

    //get call to another micro serice
 CustomeReponse clientResponse=  restClient.get(restURL, MediaType.APPLICATION_JSON);

    return clientResponse;
}

@HystrixCommand
public String  readingList(String restURL, String b) {
    System.out.println("hello");
    return null;
}

每当有对另一个微服务的get调用时,应用程序都会抛出异常。而它应该执行fallbackMethod方法。我做错了什么?

0 个答案:

没有答案