SpringCloud Binder SPI
2023-11-27 11:30 更新
Binder SPI由许多接口,现成的实用程序类和发现策略组成,这些策略提供了用于连接到外部中间件的可插拔机制。
SPI的关键是Binder
接口,这是将输入和输出连接到外部中间件的策略。以下清单显示了Binder
接口的定义:
public interface Binder<T, C extends ConsumerProperties, P extends ProducerProperties> { Binding<T> bindConsumer(String name, String group, T inboundBindTarget, C consumerProperties); Binding<T> bindProducer(String name, T outboundBindTarget, P producerProperties); }
该接口已参数化,提供了许多扩展点:
- 输入和输出绑定目标。从1.0版开始,仅支持
MessageChannel
,但将来打算将其用作扩展点。 - 扩展的使用者和生产者属性,允许特定的Binder实现添加可以以类型安全的方式支持的补充属性。
典型的活页夹实现包括以下内容:
- 实现
Binder
接口的类; - 一个Spring
@Configuration
类,它创建类型为Binder
的bean和中间件连接基础结构。 在类路径上找到一个
META-INF/spring.binders
文件,其中包含一个或多个绑定程序定义,如以下示例所示:kafka:\ org.springframework.cloud.stream.binder.kafka.config.KafkaBinderConfiguration
以上内容是否对您有帮助:
更多建议: