Spring-Integration http:带Hystrix

时间:2018-05-01 23:13:14

标签: spring-integration hystrix spring-integration-http

有没有办法可以使用Hystrix Command包装http:outbound网关REST API调用。我看到了一些使用自定义请求处理程序建议的参考,不知道我将如何去做。

1 个答案:

答案 0 :(得分:0)

见这里:Wrap spring integration outbound gateway calls with hystrix command。我无法将您的问题关闭为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