Apache Mina FTP 服务器事件
ApacheMinaFtplet
(在 5.2 版本中添加)监听某些 Apache Mina FTP 服务器事件,并将它们发布为 ApplicationEvent
,这些事件可以被任何 ApplicationListener
bean、@EventListener
bean 方法或 事件入站通道适配器 接收。
目前,支持的事件包括:
-
SessionOpenedEvent
- 客户端会话已打开 -
DirectoryCreatedEvent
- 创建了一个目录 -
FileWrittenEvent
- 写入了一个文件 -
PathMovedEvent
- 重命名了一个文件或目录 -
PathRemovedEvent
- 删除了一个文件或目录 -
SessionClosedEvent
- 客户端已断开连接
这些事件都是 ApacheMinaFtpEvent
的子类;您可以配置单个监听器来接收所有事件类型。每个事件的 source
属性都是一个 FtpSession
,您可以从中获取诸如客户端地址之类的信息;抽象事件中提供了一个方便的 getSession()
方法。
除了会话打开/关闭之外的事件还有另一个属性 FtpRequest
,它具有诸如命令和参数之类的属性。
要使用监听器(它必须是 Spring bean)配置服务器,请将其添加到服务器工厂中
FtpServerFactory serverFactory = new FtpServerFactory();
...
ListenerFactory factory = new ListenerFactory();
...
serverFactory.addListener("default", factory.createListener());
serverFactory.setFtplets(new HashMap<>(Collections.singletonMap("springFtplet", apacheMinaFtpletBean)));
server = serverFactory.createServer();
server.start();
要使用 Spring 集成事件适配器使用这些事件
@Bean
public ApplicationEventListeningMessageProducer eventsAdapter() {
ApplicationEventListeningMessageProducer producer =
new ApplicationEventListeningMessageProducer();
producer.setEventTypes(ApacheMinaFtpEvent.class);
producer.setOutputChannel(eventChannel());
return producer;
}