Apache Mina SFTP 服务器事件

ApacheMinaSftpEventListener,在版本 5.2 中添加,侦听某些 Apache Mina SFTP 服务器事件并将其发布为ApplicationEvents 可以被任何ApplicationListener@EventListenerbean 方法或 Event Inbound Channel Adapterspring-doc.cadn.net.cn

目前,支持的事件包括:spring-doc.cadn.net.cn

它们中的每一个都是ApacheMinaSftpEvent;您可以配置单个侦听器来接收所有事件类型。 这source属性是ServerSession,您可以从中获取客户端地址等信息;一个方便的getSession()method 在 abstract 事件上提供。spring-doc.cadn.net.cn

要使用侦听器(必须是 Spring bean)配置服务器,只需将其添加到SftpSubsystemFactory:spring-doc.cadn.net.cn

server = SshServer.setUpDefaultServer();
...
SftpSubsystemFactory sftpFactory = new SftpSubsystemFactory();
sftpFactory.addSftpEventListener(apacheMinaSftpEventListenerBean);
...

要使用 Spring 集成事件适配器来使用这些事件:spring-doc.cadn.net.cn

@Bean
public ApplicationEventListeningMessageProducer eventsAdapter() {
    ApplicationEventListeningMessageProducer producer =
        new ApplicationEventListeningMessageProducer();
    producer.setEventTypes(ApacheMinaSftpEvent.class);
    producer.setOutputChannel(eventChannel());
    return producer;
}