对于最新的稳定版本,请使用 Spring Integration 6.3.1Spring中文文档

对于最新的稳定版本,请使用 Spring Integration 6.3.1Spring中文文档

版本 4.2 引入了 ,它允许在运行时选择实际的会话工厂。 在调用 SFTP 端点之前,您可以调用工厂以将密钥与当前线程关联。 然后,该密钥用于查找要使用的实际会话工厂。 使用后可以通过调用来清除密钥。DelegatingSessionFactorysetThreadKey()clearThreadKey()Spring中文文档

我们添加了便利方法,以便您可以更轻松地从消息流中执行此操作,如以下示例所示:Spring中文文档

<bean id="dsf" class="org.springframework.integration.file.remote.session.DelegatingSessionFactory">
    <constructor-arg>
        <bean class="o.s.i.file.remote.session.DefaultSessionFactoryLocator">
            <!-- delegate factories here -->
        </bean>
    </constructor-arg>
</bean>

<int:service-activator input-channel="in" output-channel="c1"
        expression="@dsf.setThreadKey(#root, headers['factoryToUse'])" />

<int-sftp:outbound-gateway request-channel="c1" reply-channel="c2" ... />

<int:service-activator input-channel="c2" output-channel="out"
        expression="@dsf.clearThreadKey(#root)" />
使用会话缓存(请参阅 SFTP 会话缓存)时,应缓存每个委托。 您无法缓存本身。DelegatingSessionFactory
使用会话缓存(请参阅 SFTP 会话缓存)时,应缓存每个委托。 您无法缓存本身。DelegatingSessionFactory

从版本 5.0.7 开始,可以与 a 结合使用以轮询多个服务器;请参阅入站通道适配器:轮询多个服务器和目录DelegatingSessionFactoryRotatingServerAdviceSpring中文文档