SpringCloud 使用Confluent的Schema注册表
2023-11-27 13:57 更新
默认配置将创建DefaultSchemaRegistryClient
bean。如果要使用Confluent模式注册表,则需要创建类型为ConfluentSchemaRegistryClient
的bean,该类型将替代框架默认配置的类型。下面的示例说明如何创建这样的bean:
@Bean public SchemaRegistryClient schemaRegistryClient(@Value("${spring.cloud.stream.schemaRegistryClient.endpoint}") String endpoint){ ConfluentSchemaRegistryClient client = new ConfluentSchemaRegistryClient(); client.setEndpoint(endpoint); return client; }
ConfluentSchemaRegistryClient已针对Confluent平台4.0.0版进行了测试。
以上内容是否对您有帮助:
更多建议: