Spring Integration DSL 的文件写入支持有什么工作示例吗?我找不到有关DSL实现的任何信息。(例如,集成流程中的 handle(( 步骤等( 谢谢。
参考手册中有一个示例:
@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();
}
文件拆分FTP也可能为您提供一些见解。