我使用 Spring Integration 和<int-http:outbound-gateway>
调用 Spring Data Rest 网址。
我的调用是针对已知资源网址的简单 HTTP GET (在我的情况下,&#34;示例&#34;)。
这是<int-http:outbound-gateway>
:
<int-http:outbound-gateway id="internalGW" request-channel="dataRestChannel"
encode-uri="true" url-expression="payload"
http-method="GET" extract-request-payload="true"
header-mapper="headerMapper">
</int-http:outbound-gateway>
在日志中,我可以看到此消息:
&#39; extractPayload&#39;属性与当前无关 请求,因为HTTP方法是&#39; GET&#39;,并且没有请求正文 发送该方法。
我认为这是指http-method="GET" extract-request-payload="true"
配置,但我不知道此警告是否与问题相关。
这是对该出站通道的调用,其中包含要调用的REST URL的消息:
public Object invokeUrl(String url){
MessagingChannel messagingChannel = (MessagingChannel)ApplicationContextResolver.getApplicationContext().getBean("requestChannelBean");
MessageChannel dataRestChannel = messagingChannel.getDataRestChannel();
MessagingTemplate messagingTemplate = new MessagingTemplate();
Message<?> requestMessage = MessageBuilder.withPayload(url).build();
Message<?> response = messagingTemplate.sendAndReceive(dataRestChannel, requestMessage);
return response.getPayload();
}
调用很好,我的HTTP状态代码为200;这是response.getPayload():
<200 OK,
{
Server=[Apache-Coyote/1.1],
Cache-Control=[no-cache,no-store,max-age=0,must-revalidate],
Pragma=[no-cache],
Expires=[0],
X-XSS-Protection=[1; mode=block],
X-Frame-Options=[DENY,DENY],
X-Content-Type-Options=[nosniff,nosniff],
Transfer-Encoding=[chunked],
Date=[Fri,22 Jul 2016 13:03:22 GMT],
Content-Type=[application/hal+json],
Content-Length=[0]
}>
但是,我不明白为什么&#34;有效载荷机构&#34;是空的,正如您在Content-Length标题中看到的那样。
response GenericMessage<T> (id=219)
headers MessageHeaders (id=221)
payload ResponseEntity<T> (id=222)
body null
headers HttpHeaders (id=224)
statusCode HttpStatus (id=159)
如果我在浏览器上使用GET直接转到该URL,这是我收到的回复:
{
"_embedded": {
"examples": []
},
"_links": {
"self": {
"href": "http://localhost:8080/restapp/api/examples"
},
"profile": {
"href": "http://localhost:8080/restapp/api/profile/examples"
}
}
}
我希望这可以作为响应有效负载,而不是空负载。
我收到的ResponseEntity.body似乎是空的。
有没有办法通过出站网关获得HTTP get的相同JSON结果?
提前致谢。
更新
从Gary的建议来看,我已经监控了流量。
这里有详细的请求:
Spring Integration Request:
GET http://localhost:8080/restapp/api/examples HTTP/1.1
Host: localhost:8080
Connection: keep-alive
Cache-Control: max-age=0
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
Accept-Encoding: gzip, deflate, sdch
Accept-Language: it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4
浏览器请求:
GET http://localhost:8080/restapp/api/examples HTTP/1.1
Host: localhost:8080
Connection: keep-alive
Cache-Control: max-age=0
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
Accept-Encoding: gzip, deflate, sdch
Accept-Language: it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4
Cookie: JSESSIONID=C966FB7DB6B172D530D7C1F4DC57C6B8
请求似乎是相同的,除了一个标头(Cookie JSESSIONID,在Integration上下文中没有)。
更新2
也许我已经找到了响应中空载荷的原因。
"extractData"
org.springframework.web.client.RestTemplate
方法将对象实例 this.delegate
设置为空值。
因此,作为回报,有一个ResponseEntity
对象没有正文。
@Override
public ResponseEntity<T> extractData(ClientHttpResponse response) throws IOException {
if (this.delegate != null) { // this.delegate is null
T body = this.delegate.extractData(response);
return new ResponseEntity<T>(body, response.getHeaders(), response.getStatusCode());
}
else {
return new ResponseEntity<T>(response.getHeaders(), response.getStatusCode()); // <- it's executed this one
}
}
发现为什么this.delegate被设置为null会很有趣。
答案 0 :(得分:5)
您需要将expected-response-type="java.lang.String"
添加到网关。