Spring Batch Java配置-写入没有本地文件的远程sftp xml文件

时间:2019-01-04 12:43:11

标签: java spring spring-integration spring-batch spring-integration-sftp

我需要将xml文件写入Spring Batch应用程序中的sftp服务器。当前,以下代码使用StaxEventItemWriter将xml文件写入本地文件系统。我需要直接写入远程服务器,而不是将其写入本地,然后再移动到sftp服务器。引用了此链接(Writing to a remote file using Spring Integrations Sftp Streaming java configuration),但不确定如何使用StaxEventItemWriter / setup资源对象和远程文件进行写操作

public void write(List<? extends UserDTO> items) throws Exception {
    for(UserDTO item : items) {
        StaxEventItemWriter<UserDTO> staxWriter = getStaxEventItemWriter(item);
        staxWriter.write(Arrays.asList(item));
    }
}

private StaxEventItemWriter<UserDTO> getStaxEventItemWriter(UserDTO user) {

    String key = user.getDomain();      
    StaxEventItemWriter<UserDTO> writer = writers.get(key);
    if (writer == null) {enter code here
        writer = new StaxEventItemWriter<>();
        try {
            UrlResource resource = new UrlResource("file:"+outputDir+"/"+key+"_"+fileName+".xml");
            writer.setResource(resource);
            writer.setRootTagName("customerSet");
            Jaxb2Marshaller UserMarshaller = new Jaxb2Marshaller();
            UserMarshaller.setClassesToBeBound(UserDTO.class);
            writer.setMarshaller(UserMarshaller);
            writer.setOverwriteOutput(Boolean.TRUE);
            writer.open(executionContext);

        } catch (MalformedURLException e) {
            e.printStackTrace();
        }
        writers.put(key, writer);

    }
    return writer;
}

1 个答案:

答案 0 :(得分:0)

您可能可以尝试使用基于Spring Integration的SftpResource(类似于您共享的链接中的解决方案),并在StaxEventItemWriter中使用它。