在喝kool-aid之前做了探索工作。
我正在尝试创建一个简单的入站通道适配器来监视新ZIP文件的目录。
为了应对永远存在的“它是完整的吗?”问题,我正在尝试调整发布的here示例,以合并一个FileListFilter来检查文件的修改时间。
但是,我收到以下异常:
a boolean result is requiredclass java.util.ArrayList is not assignable to class java.lang.Boolean
at org.springframework.util.Assert.isAssignable(Assert.java:368)
at org.springframework.integration.filter.AbstractMessageProcessingSelector.accept(AbstractMessageProcessingSelector.java:61)
at org.springframework.integration.filter.MessageFilter.handleRequestMessage(MessageFilter.java:103)
at org.springframework.integration.handler.AbstractReplyProducingMessageHandler.handleMessageInternal(AbstractReplyProducingMessageHandler.java:134)
at org.springframework.integration.handler.AbstractMessageHandler.handleMessage(AbstractMessageHandler.java:73)
我在基于文件扩展名的简单路由器上运行良好,但是当我用这个过滤器替换它时,它就崩溃了。似乎实际的文件列表是Assert试图转换为布尔值的。
是否无法在入站和出站适配器之间连接过滤器?或者我必须在过滤器中将文件移动到目的地吗? (在链接示例中完成的方式)
这是配置:
<int-file:inbound-channel-adapter id="filePoller" directory="file:input" channel="filesChannel" filename-pattern="*.zip">
<int:poller fixed-rate="2000" max-messages-per-poll="10" />
</int-file:inbound-channel-adapter>
<int:filter input-channel="filesChannel" ref="lastModifiedFileFilter" output-channel="zipFilesOut"/>
<bean id="lastModifiedFileFilter" class="FileFilterOnLastModifiedTime">
<property name="timeDifference" value="10000"/>
</bean>
<int-file:outbound-channel-adapter id="zipFilesOut" directory="file:target/output/zip" delete-source-files="true" />
这是过滤器: import java.io.File;
import org.springframework.integration.file.filters.AbstractFileListFilter;
public class FileFilterOnLastModifiedTime extends AbstractFileListFilter<File> {
Long timeDifference = 1000L;
@Override
protected boolean accept(File file) {
long lastModified = file.lastModified();
long currentTime = System.currentTimeMillis();
return (currentTime - lastModified) > timeDifference ;
}
public void setTimeDifference(Long timeDifference) {
this.timeDifference = timeDifference;
}
}
答案 0 :(得分:0)
应使用FileFilterOnLastModifiedTime
属性将filter
bean提供给入站适配器。
<int-file:inbound-channel-adapter id="filePoller" directory="file:input" channel="zipFilesOut" filename-pattern="*.zip"
filter="lastModifiedFileFilter">
<int:poller fixed-rate="2000" max-messages-per-poll="10" />
</int-file:inbound-channel-adapter>
内联<filter/>
元素是一个简单的POJO,它接受一些参数并返回一个布尔值。
由于您提供的是AbstractFileListFilter
,因此框架正在尝试调用filterFiles
,它接受一个数组并返回List
,而不是布尔值。