上下文持有者建议
从 6.1 版本开始,引入了 ContextHolderRequestHandlerAdvice
。此建议从请求消息中获取某些值并将其存储在上下文持有者中。当在目标 MessageHandler
上完成执行时,上下文将清除该值。考虑此建议的最佳方法类似于编程流程,在该流程中,我们将一些值存储到 ThreadLocal
中,从目标调用中访问它,然后在执行后清理 ThreadLocal
。ContextHolderRequestHandlerAdvice
需要以下构造函数参数:Function<Message<?>, Object>
作为值提供程序,Consumer<Object>
作为上下文设置回调,以及 Runnable
作为上下文清理钩子。
以下是如何在 ContextHolderRequestHandlerAdvice
与 o.s.i.file.remote.session.DelegatingSessionFactory
结合使用时的示例
@Bean
DelegatingSessionFactory<?> dsf(SessionFactory<?> one, SessionFactory<?> two) {
return new DelegatingSessionFactory<>(Map.of("one", one, "two", two), null);
}
@Bean
ContextHolderRequestHandlerAdvice contextHolderRequestHandlerAdvice(DelegatingSessionFactory<String> dsf) {
return new ContextHolderRequestHandlerAdvice(message -> message.getHeaders().get("FACTORY_KEY"),
dsf::setThreadKey, dsf::clearThreadKey);
}
@ServiceActivator(inputChannel = "in", adviceChain = "contextHolderRequestHandlerAdvice")
FtpOutboundGateway ftpOutboundGateway(DelegatingSessionFactory<?> sessionFactory) {
return new FtpOutboundGateway(sessionFactory, "ls", "payload");
}
只需向 in
通道发送一条消息,并将 FACTORY_KEY
标头设置为 one
或 two
即可。ContextHolderRequestHandlerAdvice
通过其 setThreadKey
将该标头中的值设置为 DelegatingSessionFactory
。然后,当 FtpOutboundGateway
执行 ls
命令时,将根据其 ThreadLocal
中的值从 DelegatingSessionFactory
中选择合适的委托 SessionFactory
。当从 FtpOutboundGateway
生成结果时,将根据 ContextHolderRequestHandlerAdvice
的 clearThreadKey()
调用清除 DelegatingSessionFactory
中的 ThreadLocal
值。有关更多信息,请参阅 委托会话工厂。