FTP 出站通道适配器
FTP 出站通道适配器依赖于一个MessageHandler
实现,该实现连接到 FTP 服务器并为其收到的每个传入消息有效负载中的文件启动 FTP 传输。它还支持文件的几种表示形式,因此您不仅限于java.io.File
类型的有效负载。FTP 出站通道适配器支持以下有效负载
-
java.io.File
:实际的文件对象 -
byte[]
:表示文件内容的字节数组 -
java.lang.String
:表示文件内容的文本 -
java.io.InputStream
:传输到远程文件的數據流 -
org.springframework.core.io.Resource
:传输到远程文件的资源
以下示例显示如何配置outbound-channel-adapter
<int-ftp:outbound-channel-adapter id="ftpOutbound"
channel="ftpChannel"
session-factory="ftpSessionFactory"
charset="UTF-8"
remote-file-separator="/"
auto-create-directory="true"
remote-directory-expression="headers['remote_dir']"
temporary-remote-directory-expression="headers['temp_remote_dir']"
filename-generator="fileNameGenerator"
use-temporary-filename="true"
chmod="600"
mode="REPLACE"/>
前面的配置显示了如何使用outbound-channel-adapter
元素配置 FTP 出站通道适配器,同时还为各种属性提供值,例如filename-generator
(o.s.i.file.FileNameGenerator
策略接口的实现)、对session-factory
的引用和其他属性。您还可以看到一些*expression
属性的示例,这些属性允许您使用 SpEL 配置设置,例如remote-directory-expression
、temporary-remote-directory-expression
和remote-filename-generator-expression
(filename-generator
的 SpEL 替代方案,如前面的示例所示)。与任何允许使用 SpEL 的组件一样,可以通过“payload”和“headers”变量访问有效负载和消息头。有关可用属性的更多详细信息,请参阅架构。
默认情况下,如果未指定文件名生成器,则 Spring Integration 使用o.s.i.file.DefaultFileNameGenerator 。DefaultFileNameGenerator 根据MessageHeaders 中file_name 头的值(如果存在)确定文件名,或者,如果消息的有效负载已经是java.io.File ,则使用该文件的原始名称。 |
定义某些值(例如remote-directory )可能取决于平台或 FTP 服务器。例如,如forum.spring.io/showthread.php?p=333478&posted=1#post333478上所述,在某些平台上,您必须在目录定义的末尾添加斜杠(例如,remote-directory="/thing1/thing2/" 而不是remote-directory="/thing1/thing2" )。 |
从 4.1 版开始,您可以在传输文件时指定mode
。默认情况下,会覆盖现有文件。模式由FileExistsMode
枚举定义,其中包括以下值
-
REPLACE
(默认) -
REPLACE_IF_MODIFIED
-
APPEND
-
APPEND_NO_FLUSH
-
IGNORE
-
FAIL
IGNORE
和FAIL
不会传输文件。FAIL
导致抛出异常,而IGNORE
静默忽略传输(尽管会生成DEBUG
日志条目)。
版本 5.2 引入了chmod
属性,您可以使用它在上传后更改远程文件权限。您可以使用传统的 Unix 八进制格式(例如,600
仅允许文件所有者读取和写入)。使用 Java 配置适配器时,可以使用setChmodOctal("600")
或setChmod(0600)
。仅当您的 FTP 服务器支持SITE CHMOD
子命令时才适用。
避免部分写入的文件
处理文件传输时出现的一个常见问题是处理部分文件的可能性。也就是说,文件可能在文件系统中出现,而其传输尚未完成。
为了解决此问题,Spring Integration FTP 适配器使用了一种常见的算法:文件在临时名称下传输,然后在完全传输后重命名。
默认情况下,正在传输过程中的每个文件都会在文件系统中显示一个额外的后缀,默认情况下为.writing
。您可以通过设置temporary-file-suffix
属性来更改此后缀。
但是,在某些情况下,您可能不想使用此技术(例如,如果服务器不允许重命名文件)。对于此类情况,您可以通过将use-temporary-file-name
设置为false
来禁用此功能(默认值为true
)。当此属性为false
时,文件将使用其最终名称写入,并且使用应用程序需要某种其他机制来检测文件是否已完全上传,然后再访问它。
使用 Java 配置进行配置
以下 Spring Boot 应用程序显示了如何使用 Java 配置配置出站适配器的示例
@SpringBootApplication
@IntegrationComponentScan
public class FtpJavaApplication {
public static void main(String[] args) {
ConfigurableApplicationContext context =
new SpringApplicationBuilder(FtpJavaApplication.class)
.web(false)
.run(args);
MyGateway gateway = context.getBean(MyGateway.class);
gateway.sendToFtp(new File("/foo/bar.txt"));
}
@Bean
public SessionFactory<FTPFile> ftpSessionFactory() {
DefaultFtpSessionFactory sf = new DefaultFtpSessionFactory();
sf.setHost("localhost");
sf.setPort(port);
sf.setUsername("foo");
sf.setPassword("foo");
sf.setTestSession(true);
return new CachingSessionFactory<FTPFile>(sf);
}
@Bean
@ServiceActivator(inputChannel = "ftpChannel")
public MessageHandler handler() {
FtpMessageHandler handler = new FtpMessageHandler(ftpSessionFactory());
handler.setRemoteDirectoryExpressionString("headers['remote-target-dir']");
handler.setFileNameGenerator(new FileNameGenerator() {
@Override
public String generateFileName(Message<?> message) {
return "handlerContent.test";
}
});
return handler;
}
@MessagingGateway
public interface MyGateway {
@Gateway(requestChannel = "toFtpChannel")
void sendToFtp(File file);
}
}
使用 Java DSL 进行配置
以下 Spring Boot 应用程序显示了如何使用 Java DSL 配置出站适配器的示例
@SpringBootApplication
@IntegrationComponentScan
public class FtpJavaApplication {
public static void main(String[] args) {
ConfigurableApplicationContext context =
new SpringApplicationBuilder(FtpJavaApplication.class)
.web(false)
.run(args);
MyGateway gateway = context.getBean(MyGateway.class);
gateway.sendToFtp(new File("/foo/bar.txt"));
}
@Bean
public SessionFactory<FTPFile> ftpSessionFactory() {
DefaultFtpSessionFactory sf = new DefaultFtpSessionFactory();
sf.setHost("localhost");
sf.setPort(port);
sf.setUsername("foo");
sf.setPassword("foo");
sf.setTestSession(true);
return new CachingSessionFactory<FTPFile>(sf);
}
@Bean
public IntegrationFlow ftpOutboundFlow() {
return IntegrationFlow.from("toFtpChannel")
.handle(Ftp.outboundAdapter(ftpSessionFactory(), FileExistsMode.FAIL)
.useTemporaryFileName(false)
.fileNameExpression("headers['" + FileHeaders.FILENAME + "']")
.remoteDirectory(this.ftpServer.getTargetFtpDirectory().getName())
).get();
}
@MessagingGateway
public interface MyGateway {
@Gateway(requestChannel = "toFtpChannel")
void sendToFtp(File file);
}
}