实现自定义入站通道适配器最简单的方法是什么?

时间:2014-12-03 09:14:32

标签: spring-integration

我需要一个自定义适配器来轮询自定义资源。 (它返回一个文件列表。)

是否能够在spring集成中实现和使用它?

实施这种可轮询资源的最佳做法是什么?

1 个答案:

答案 0 :(得分:6)

请参阅<inbound-channel-adapter>

<int:inbound-channel-adapter ref="source1" method="method1" channel="channel1">
    <int:poller fixed-rate="5000"/>
</int:inbound-channel-adapter>

source1类似于:

public class MyService {

   public List<File> method1() {
     ....
   }  

}

每个fixed-rate间隔都会调用您的方法。