【发布时间】:2016-09-26 12:15:18
【问题描述】:
我有一个访问网络服务的代码,这反过来又给我一个响应
<int:chain input-channel="balanceChannel" output-channel="processedItems">
<int-ws:outbound-gateway destination-provider="myDestinationProvider" />
</int:chain>
<int:service-activator input-channel="processedItems"
ref="responseHandler" method="handleResponse" output-channel="nativeQlChannel" />
我能够在我的 responseHandler 中获得响应,但我还想要使用通道发送到 Web 服务的请求对象?如何在 responseHandler 中访问相同的请求对象?
【问题讨论】:
标签: spring-integration spring-web