Apache Mina FTP 服务器事件
从 5.2 版本开始添加的ApacheMinaFtplet
会监听某些 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;
}