【发布时间】:2014-07-29 07:09:06
【问题描述】:
我正在使用 http 出站网关使用以下类似配置发出 http 请求:
<int-http:outbound-gateway id="httpOutboundGateway" request-channel="requestChannel"
url="http://www.google.com" http-method="GET" reply-channel="responseChannel"
expected-response-type="java.lang.String" charset="UTF-8" reply-timeout="5000"
message-converters="" >
</int-http:outbound-gateway>
- 处理响应时如何访问请求对象(请求消息推送到请求通道)?
- 有没有办法在替换 url 中的请求参数后查看它正在执行的最终 url/请求?
【问题讨论】:
标签: java spring spring-integration