我刚接触Spring集成sftp.Now,我想从多个目录下载文件。然后看来SFTP Outbound Gateway是我的chocie,但我只找到使用XML config的例子。如何使用Java完成配置? 我的配置类:
@Configuration
public class SftpConfig {
@Bean
public SessionFactory<LsEntry> sftpSessionFactory(){
DefaultSftpSessionFactory defaultSftpSessionFactory = new DefaultSftpSessionFactory();
...
return new CachingSessionFactory<LsEntry>(defaultSftpSessionFactory);
}
@Bean
@InboundChannelAdapter(channel = "sftpChannel",autoStartup = "false", poller = @Poller(fixedDelay = "5000"))
public MessageSource<File> sftpMessageSource() {
...
}
@Bean(name = "lsGateway")
@ServiceActivator(inputChannel = "sftpChannel")
public MessageHandler handlerLs(){
SftpOutboundGateway sftpOutboundGateway = new SftpOutboundGateway(sftpSessionFactory(),"ls","payload");
sftpOutboundGateway.setLocalDirectory(new File("sftp-gateway"));
return sftpOutboundGateway;
}
}
@MessagingGateway
public interface OutboundGatewayOption {
@Gateway(requestChannel = "sftpChannel")
public List<Boolean> lsGetAndRmFiles(String dir);
}
但是当我启动应用程序时,没有任何反应,哪里出错?
---- ---更新 我的测试类
@SpringBootTest(classes = Application.class)
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@Configuration
@EnableIntegration
@Slf4j
@MessageEndpoint
public class SftpConfigTest{
@Autowired
private OutboundGatewayOption gatewayOption;
@Test
public void test(){
gatewayOption.lsGetAndRmFiles("/");
}
}
答案 0 :(得分:2)
目前尚不清楚“没有任何反应”是什么意思。看来你有两种方法可以触发LS请求 - 一个消息传递网关(你必须调用它)和一个入站通道适配器,它有autoStartup = "false"
- 在它启动之前它不会调用网关。
此外,当使用它作为触发器时,您将需要SFTP网关上的输出通道(将结果发送到何处)。通过调用消息传递网关调用网关时,结果将返回到网关(因为SFTP网关没有输出通道)。