1

Spring Integration DSL 的文件写入支持是否有任何工作示例?我找不到有关 DSL 实现的任何信息。(例如,集成流程中的 handle() 步骤等)谢谢。

4

1 回答 1

2

参考手册中有一个示例:

@Bean
public IntegrationFlow fileWritingFlow() {
    return IntegrationFlows.from("fileWritingInput")
            .enrichHeaders(h -> h.header(FileHeaders.FILENAME, "foo.txt")
                      .header("directory", new File(tmpDir.getRoot(), "fileWritingFlow")))
            .handle(Files.outboundAdapter(m -> m.getHeaders().get("directory")))
            .channel(MessageChannels.queue("fileWritingResultChannel"))
            .get();
}

File-Split-FTP也可以为您提供一些见解。

于 2018-05-30T15:44:02.337 回答