使用spring集成计划Web Service调用

时间:2015-01-29 06:44:45

标签: web-services rest spring-integration

我想使用Spring集合安排(使用日期时间)Webservice调用。我打算使用以下配置来调用REST Web服务。我是Webservice和SI的新手。你们中的任何人都可以帮我提出一个调度程序吗?

<int-http:outbound-gateway request-channel="sampleRequestChannel"
    reply-channel="sampleReplyChannel"
    url="http://<server details>"
    http-method="POST" expected-response-type="java.lang.String" />

1 个答案:

答案 0 :(得分:1)

要从DB读取数据,有JDBC适配器。其中之一是:

<int-jdbc:inbound-channel-adapter>
    <int:poller/>
</int-jdbc:inbound-channel-adapter>

您可以定期{DB}} DB中的某些表以获取日期和时间的新值,并将其作为poll发送到Spring Integration流程。

另一个是payload,它基于上游流,可以由用户事件触发。