与SFTP的Spring集成

时间:2019-06-25 15:49:58

标签: spring spring-integration spring-integration-sftp

我正在构建一个微服务,以从SFTP文件服务器访问文件。我决定使用Spring Integration SFTP来完成工作。我是Spring Integration的新手,并对所有工作原理感到困惑。

我的目标是获取SFTP服务器上目录的文件列表,并将其显示给用户界面。从那里,用户将选择要下载的文件,我将使用文件名将文件从SFTP服务器流式传输到用户界面。

我正在使用以下有效的代码。

Entire class to handle SFTP with SSH


@Slf4j
@Configuration
public class SftpConfig {
    @Value("${sftp.host}")
    private String sftpHost;
    @Value("${sftp.port:22}")
    private int sftpPort;
    @Value("${sftp.user}")
    private String sftpUser;
    @Value("${sftp.privateKey:#{null}}")
    private Resource sftpPrivateKey;
    @Value("${sftp.privateKeyPassphrase:}")
    private String sftpPrivateKeyPassphrase;
    @Value("${sftp.password:#{null}}")
    private String sftpPasword;
    @Value("${sftp.remote.directory:/}")
    private String sftpRemoteDirectory;

    @Bean
public SessionFactory<LsEntry> sftpSessionFactory() {
        DefaultSftpSessionFactory factory = new DefaultSftpSessionFactory(true);
        factory.setHost(sftpHost);
        factory.setPort(sftpPort);
        factory.setUser(sftpUser);
        if (sftpPrivateKey != null) {
            factory.setPrivateKey(sftpPrivateKey);
            factory.setPrivateKeyPassphrase(sftpPrivateKeyPassphrase);
        } else {
            factory.setPassword(sftpPasword);
        }
        factory.setAllowUnknownKeys(true);
        return new CachingSessionFactory<>(factory);
    }

    @ServiceActivator(inputChannel = "ftpLS")
    @Bean
public SftpOutboundGateway getFtpLS() {
        SftpOutboundGateway gateway = new SftpOutboundGateway(sftpSessionFactory(), "ls", "'" + sftpRemoteDirectory + "' + payload");
        gateway.setOption(AbstractRemoteFileOutboundGateway.Option.NAME_ONLY);
        return gateway;
    }

    @ServiceActivator(inputChannel = "ftpGet")
    @Bean
public SftpOutboundGateway getFtpGet() {
        SftpOutboundGateway gateway = new SftpOutboundGateway(sftpSessionFactory(), "get", "'" + sftpRemoteDirectory + "' + payload");
        gateway.setOption(AbstractRemoteFileOutboundGateway.Option.STREAM);
        return gateway;
    }

    @MessagingGateway(defaultRequestChannel = "ftpLS")
    public interface FtpLS {
        List list(String directory);
    }

    @MessagingGateway(defaultRequestChannel = "ftpGet")
    public interface FtpGet {
        InputStream get(String fileName);
    }

}

运行

@Bean
public ApplicationRunner runner(SftpConfig.FtpLS ftpLS, SftpConfig.FtpGet ftpGet) {
    return args -> {
        List<String> list = ftpLS.list("139");
        System.out.println("Result:" + list);

        InputStream is = ftpGet.get("139/" + list.get(0));
        String theString = IOUtils.toString(is,"UTF-8");
        System.out.println("Result:" + theString);

    };
}

我的第一个问题是这是正确的方法吗?

第二,我是否需要两个接口才能使用两个不同的SftpOutboundGateway?

最后,在执行FtsGet时是否有更好的方法来传递动态目录名称?现在,我正在通过字符串将139与基本目录连接起来,并将其通过接口传递。

1 个答案:

答案 0 :(得分:2)

  

这是正确的方法吗?

是的,该方法是正确的。尽管我建议不要将isSharedSession用于网关,因为它可能由不同的用户从不同的线程使用。

  

我需要两个接口吗?

不,您确实可以有一个@MessagingGateway,但是有几种方法带有自己的@Gateway注释。

  

有没有更好的方法来传递动态目录?

不,您的方法是正确的。没有像working directory这样的东西可以像在FTP中那样自动切换。