我正在尝试轮询FTP目录中的某种文件,但可以进行目录轮询,但是每当我尝试应用过滤器以按扩展名过滤文件时,messagesource都会不断发送有关该文件的垃圾邮件,而不会关于轮询延迟。如果没有过滤器,一切正常,一旦启用它们,我的应用程序便会通过FTP进行身份验证,下载文件并一次又一次不间断地发送消息。我有以下豆子:
/**
* Factory that creates the remote connection
*
* @return DefaultSftpSessionFactory
*/
@Bean
public DefaultSftpSessionFactory sftpSessionFactory(@Value("${ftp.host}") String ftpHost,
@Value("${ftp.port}") int ftpPort,
@Value("${ftp.user}") String ftpUser,
@Value("${ftp.pass}") String ftpPass) {
DefaultSftpSessionFactory factory = new DefaultSftpSessionFactory();
factory.setAllowUnknownKeys(true);
factory.setHost(ftpHost);
factory.setPort(ftpPort);
factory.setUser(ftpUser);
factory.setPassword(ftpPass);
return factory;
}
/**
* Template to handle remote files
*
* @param sessionFactory SessionFactory bean
* @return SftpRemoteFileTemplate
*/
@Bean
public SftpRemoteFileTemplate fileTemplate(DefaultSftpSessionFactory sessionFactory) {
SftpRemoteFileTemplate template = new SftpRemoteFileTemplate(sessionFactory);
template.setAutoCreateDirectory(true);
template.setUseTemporaryFileName(false);
return template;
}
/**
* To listen to multiple directories, declare multiples of this bean with the same inbound channel
*
* @param fileTemplate FileTemplate bean
* @return MessageSource
*/
@Bean
@InboundChannelAdapter(channel = "deeplinkAutomated", poller = @Poller(fixedDelay = "6000", maxMessagesPerPoll = "-1"))
public MessageSource inboundChannelAdapter(SftpRemoteFileTemplate fileTemplate) {
SftpStreamingMessageSource source = new SftpStreamingMessageSource(fileTemplate);
source.setRemoteDirectory("/upload");
source.setFilter(new CompositeFileListFilter<>(
Arrays.asList(new AcceptOnceFileListFilter<>(), new SftpSimplePatternFileListFilter("*.trg"))
));
return source;
}
/**
* Listener that activates on new messages on the specified input channel
*
* @return MessageHandler
*/
@Bean
@ServiceActivator(inputChannel = "deeplinkAutomated")
public MessageHandler handler(JobLauncher jobLauncher, Job deeplinkBatch) {
return message -> {
Gson gson = new Gson();
SFTPFileInfo info = gson.fromJson((String) message.getHeaders().get("file_remoteFileInfo"), SFTPFileInfo.class);
System.out.println("File to download: " + info.getFilename().replace(".trg", ".xml"));
};
}
答案 0 :(得分:1)
我认为stack corruption
不适合SFTP文件。返回的AcceptOnceFileListFilter
与先前存储在LsEntry
中的不匹配:只是它们的哈希值不同!
考虑改用HashSet
。
另外,最好为SftpPersistentAcceptOnceFileListFilter
配置DefaultSftpSessionFactory
:
isSharedSession
为避免在每个轮询任务上重新进行会话。
通话之间没有6秒钟的延迟,因为您有/**
* @param isSharedSession true if the session is to be shared.
*/
public DefaultSftpSessionFactory(boolean isSharedSession) {
。这意味着轮询远程文件,直到它们位于远程目录中为止。对于maxMessagesPerPoll = "-1"
,由于哈希原因,您总是以相同的文件结尾。