Spring-Cloud学习之路-问题记录

一:关于 hystrix 的异常 fallback method wasn’t found

错误日志如下:

2017-08-11 16:27:55.415 ERROR 8828 --- [nio-8030-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]    : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is com.netflix.hystrix.contrib.javanica.exception.FallbackDefinitionException: fallback method wasn't found: helloFallback([class java.lang.String])] with root cause

com.netflix.hystrix.contrib.javanica.exception.FallbackDefinitionException: fallback method wasn't found: helloFallback([class java.lang.String])
    ...... // 其余省略

出现如上所述的异常,这是因为指定的 备用方法 和 原方法 的参数个数,类型不同造成的;

如下代码:

    @HystrixCommand(fallbackMethod = "helloFallback")
    public String helloService(String name) {
        return restTemplate.getForEntity("http://hello-service/hello/{name}", String.class, name).getBody();
    }

    public String helloFallback(){
        return "can't get hello method, this name is " ;
    }

在这里原方法是带有参数,而备用方法则无参,修改为以下代码就可以解决问题:

    @HystrixCommand(fallbackMethod = "helloFallback")
    public String helloService(String name) {
        return restTemplate.getForEntity("http://hello-service/hello/{name}", String.class, name).getBody();
    }

    public String helloFallback(String name){
        return "can't get hello method, this name is " + name;
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值