如何通过Java 1.7中的Spring DSL将消息从我的文件入站适配器传输到Sftp出站适配器

时间:2015-07-23 10:34:06

标签: spring-integration

我如何在java 1.7中通过Spring DSL将消息从我的文件入站适配器传输到Sftp出站适配器,因为我有两个用于文件入站适配器和Sftp出站适配器的separtae流程,但我无法从Sftp Outbound发送消息适配器虽然我的InBound适配器工作正常。 我想做一些这样的事情......但是我正在努力将这个东西转换成我的整合流程。

消息消息= this.fileReadingResultChannel.receive();
                 this.toSftpChannel.send(消息);

当我停留在这里并且无法继续时,有人可以帮助我。

我的文件入站流程看起来像这样..

@Bean
public IntegrationFlow fileReadingFlow() {          
    return IntegrationFlows
            .from(fileMessageSource(),
                    new Consumer<SourcePollingChannelAdapterSpec>() {

                        @Override
                        public void accept(SourcePollingChannelAdapterSpec e) {
                            e.autoStartup(true).poller(Pollers.fixedRate(6000)
                                            .maxMessagesPerPoll(1));
                        }
                    }).transform(Transformers.fileToByteArray())
            .channel(MessageChannels.queue("fileReadingResultChannel"))
            .get();
}

@Bean
public MessageSource<File> fileMessageSource() {

    FileReadingMessageSource source = new FileReadingMessageSource();
    source.setDirectory(new File(localDir));    
    source.setAutoCreateDirectory(true);        
    return source;
}

这是我的sftp出境流程..

@Bean
public IntegrationFlow sftpOutboundFlow() {
    System.out.println("enter out  bound flow.....");
    return IntegrationFlows
            .from("toSftpChannel")
            .handle(Sftp.outboundAdapter(this.sftpSessionFactory)
                    .remoteFileSeparator("\\")
                    .useTemporaryFileName(false)
                    .remoteDirectory(remDir)).get();
}

1 个答案:

答案 0 :(得分:0)

您不需要将文件读入内存; sftp适配器将读取并直接发送。

@Bean
public IntegrationFlow transferFlow() {
    return IntegrationFlows.from(Files.inboundAdapter(new File("/tmp/foo")),
                new Consumer<SourcePollingChannelAdapterSpec>() {

                    @Override
                    public void accept(SourcePollingChannelAdapterSpec e) {
                        e
                        .autoStartup(true)
                        .poller(Pollers
                            .fixedDelay(5000)
                            .maxMessagesPerPoll(1));
                    }
                })
            .handle(Sftp.outboundAdapter(this.sftpSessionFactory)
                    .useTemporaryFileName(false)
                    .remoteDirectory("destDir"))
            .get();
}

如果你想把它保存为2个独立的流程,只需将它们与通道bean连接起来:

@Bean
public MessageChannel foo() {
    return new DirectChannel();
}

.channel(foo())结束第一个,并使用.from(foo())开始第二个。