我将通过spring集成实现使用REST服务,并且有以下代码。
<int:gateway id="myGateway" service-interface="org.moonshiner.MyGateway"/>
<int:channel id="myInputChannel"/>
<int:chain input-channel="myInputChannel">
<int-http:outbound-gateway
url="${url}"
http-method="GET"
rest-template="oAuth2RestTemplate"
expected-response-type="java.lang.String">
</int-http:outbound-gateway>
<int:transformer ref="myTransformer"/>
</int:chain>
一切正常,但我想进行相同的实现,但我不想使用REST Web服务,而是想在调用网关时从文件夹中读取文件。
有什么建议吗?我尝试使用file:inbound-channel-adapter,但是由于我只想在调用网关时才读取文件,因此我不得不定义轮询器,而这是我所不希望的。
答案 0 :(得分:1)
这应该和在某些A
中调用的POJO方法中创建的new File()
一样简单。