问题解决Feign+Hystrix没有进入回退函数

为什么80%的码农都做不了架构师?>>>   hot3.png

关闭服务提供者,访问feign+Hystrix搭建的消费方,没有进入回退函数。页面报异常:

Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.

Mon Jan 15 17:13:58 CST 2018
There was an unexpected error (type=Internal Server Error, status=500).
...

网上查了挺多,发现是feign默认没有启动Hystrix的,看了挺多教程都没有提出这个,包括大神的书。可能我用的是Edgware.RELEASE版本。

解决办法在配置文件application.yml设置

feign:
  hystrix:
    enabled: true

 

转载于:https://my.oschina.net/gore/blog/1607407

你可能感兴趣的:(问题解决Feign+Hystrix没有进入回退函数)