Authored by wangshijie

modify

... ... @@ -10,6 +10,7 @@ Hystrix如何解决依赖隔离:
- 4:依赖调用结果分:成功,失败(抛出异常),超时,线程拒绝,短路。 请求失败(异常,拒绝,超时,短路)时执行fallback(降级)逻辑。
- 5:提供熔断器组件,可以自动运行或手动调用,停止当前依赖一段时间(10秒),熔断器默认错误率阈值为50%,超过将自动运行。
- 6:提供近实时依赖的统计和监控
异步调用使用 command.queue()get(timeout, TimeUnit.MILLISECONDS);
同步调用使用 command.execute() 等同于 command.queue().get();###2.RestTemplate
RestTemplate是Spring提供的用于访问Rest服务的客户端,RestTemplate提供了多种便捷访问远程Http服务的方法,能够大大提高客户端的编写效率。
... ...