文件支持
Spring Integration 的文件支持扩展了 Spring Integration 核心,提供专门的词汇来处理文件读取、写入和转换。
您需要将此依赖项包含到您的项目中
-
Maven
-
Gradle
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-file</artifactId>
<version>6.3.0</version>
</dependency>
compile "org.springframework.integration:spring-integration-file:6.3.0"
它提供了一个命名空间,该命名空间支持定义专门用于文件的通道适配器元素,并支持将文件内容读取为字符串或字节数组的转换器。
本节介绍 FileReadingMessageSource
和 FileWritingMessageHandler
的工作原理以及如何将它们配置为 bean。 它还讨论了通过文件特定实现的 Transformer
处理文件的支持。 最后,它解释了文件特定的命名空间。