爲了發送HTTP請求到基於郵件頭的動態網址...Spring集成 - URL變量在HTTP不工作:出站網關
我想設置從郵件標題中的URL值如下:
<int-http:outbound-gateway id="httpOutboundGateway" request-channel="fromMyQueue"
url="{outboundGatewayUrl}" reply-channel="nullChannel"
http-method="POST" expected-response-type="java.lang.String" charset="UTF-8">
<int-http:uri-variable name="outboundGatewayUrl" expression="headers['X-CUSTOM-HTTP-REQUEST-URL']" />
但是,這是行不通的。
顯然{outboundGatewayUrl}
值根本不被替換。
如果我用{outboundGatewayUrl}
替換爲實際的URL,這是有效的。
錯誤消息:
Caused by:
org.springframework.integration.MessageHandlingException: HTTP request execution failed for URI [{outboundGatewayUrl}]...
Caused by:<br> java.lang.IllegalArgumentException: URI is not absolute
at java.net.URI.toURL(URI.java:1080)
at org.springframework.http.client.SimpleClientHttpRequestFactory.createRequest(SimpleClientHttpRequestFactory.java:109)
缺少什麼我在這裏?
加里>我試着你的建議 - 是的使用文字表達工作得很好。我實際上是從Queue(Rabbit MQ)中讀取消息,然後在下一步中發送http請求給消息頭中的URL。所以我在Message上放置了一個標題(在Rabbit MQ中) - 所以我想知道這些標題是不是在Spring的消息中顯示的? – Jasper
如果打開調試日誌記錄,則可以看到標題。 –
對於來自amqp的消息,您需要向入站適配器添加'mapped-request-headers'屬性。沒有它和DEBUG日誌記錄,你會看到默認情況下自定義標題不會被映射。 –