有没有办法可以使用 Hystrix 命令包装 http:outbound 网关 REST API 调用。我看到了一些关于使用自定义请求处理程序建议的参考,但不确定我将如何去做。
问问题
108 次
1 回答
0
请参阅此处:使用 hystrix 命令包装 spring 集成出站网关调用。我无法结束您的问题,duplicate
因为没有人投票支持我的答案。但仍然:必须为您的用例应用相同的解决方案:
@ServiceActivator(inputChannel = "serviceChannel")
@HystrixCommand(fallbackMethod = "serviceFallback")
public String myService(String payload) {
// Some external service call
}
public String serviceFallback(String payload) {
// some fallback logic
}
另请参阅我的发送箱中的示例:https ://github.com/artembilan/sendbox/tree/master/spring-integration-with-hystrix
于 2018-05-02T13:09:02.740 回答