我正在使用 Spring Integration 进行 POST REST WebService 调用我的出站网关定义如下:
<int-http:outbound-gateway
url="url"
http-method="POST" request-channel="reqChannel"
reply-channel="replyChannel" expected-response-type="java.lang.String">
</int-http:outbound-gateway>
我的问题是url
. 我需要根据不同的条件有不同的网址。如何使url
变量可从有效负载而不是硬编码进行配置。