我需要一个自定义适配器来轮询自定义资源。 (它返回一个文件列表。)
是否能够在spring集成中实现和使用它?
实施这种可轮询资源的最佳做法是什么?
答案 0 :(得分:6)
<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
间隔都会调用您的方法。