Apache Mina SFTP Server Events
在版本 5.2 中添加的 ApacheMinaSftpEventListener
,侦听特定的 Apache Mina SFTP 服务器事件,并将它们发布为 ApplicationEvent
,任何 ApplicationListener
Bean、@EventListener
Bean 方法或 Event Inbound Channel Adapter 都可以接收这些事件。
当前支持的事件有:
-
SessionOpenedEvent
- 打开了一个客户端会话 -
DirectoryCreatedEvent
- 创建了一个目录 -
FileWrittenEvent
-已向文件写入 -
PathMovedEvent
-文件或目录已重命名 -
PathRemovedEvent
-文件或目录已删除 -
SessionClosedEvent
-客户端已断开连接
每个事件都是 ApacheMinaSftpEvent
的子类;您可以配置单个侦听器来接收所有事件类型。每个事件的 source
属性是一个 ServerSession
,您可以从中获取诸如客户端地址等信息;抽象事件上提供了一个便捷的 getSession()
方法。
要使用侦听器配置服务器(该侦听器必须是 Spring bean),只需将其添加到 SftpSubsystemFactory
:
server = SshServer.setUpDefaultServer();
...
SftpSubsystemFactory sftpFactory = new SftpSubsystemFactory();
sftpFactory.addSftpEventListener(apacheMinaSftpEventListenerBean);
...
若要使用 Spring Integration 事件适配器使用这些事件:
@Bean
public ApplicationEventListeningMessageProducer eventsAdapter() {
ApplicationEventListeningMessageProducer producer =
new ApplicationEventListeningMessageProducer();
producer.setEventTypes(ApacheMinaSftpEvent.class);
producer.setOutputChannel(eventChannel());
return producer;
}