【问题标题】:How do I configure Spring Kafka Listener for a specfic topic using the factory?如何使用工厂为特定主题配置 Spring Kafka 侦听器?
【发布时间】:2019-11-25 14:57:12
【问题描述】:

我希望能够通过属性读取主题,而无需在 Kafka 侦听器注释上指定任何内容。不使用 Spring Boot。

我尝试通过“主题”键直接从属性对象中读取主题。这给出了一个错误:IllegalStateException:topics, topicPattern, or topicPartitions must be provided.

// some class
@KafkaListener
public void listener(List<String> messages) {
  System.out.print(messages);
}

//some other class
@Bean
public ConsumerFactory<String, String> consumerFactory(Properties topicProp) {
  return new DefaultKafkaConsumerFactory(topicProp);
}

@Bean
public ConcurrentKafkaListenerContainerFactory<String, String> kafkaListenerContainerFactory() {
  ConcurrentKafkaListenerContainerFactory<String, String> factory = new ConcurrentKafkaListenerContainerFactory<>();

  Properties prop = new Properties();
  prop.setProperty("topics", "my-custom-topic");

  factory.setConsumerFactory(this.consumerFactory(prop));
  return factory;
}

Is this possible?

【问题讨论】:

    标签: java spring apache-kafka kafka-consumer-api spring-kafka


    【解决方案1】:

    您可以在 topics 中引用其他 bean(或 bean 上的方法)

    @Bean
    public String topicName() {
        return "my-custom-topic";
    }
    
    ...
    
    @KafkaListener(topics = "#{@topicName}")
    ...
    

    @KafkaListener(topics = "#{@someBean.someMethod()}")
    

    【讨论】:

      猜你喜欢
      • 2023-04-06
      • 2020-03-11
      • 2020-06-22
      • 2017-08-17
      • 1970-01-01
      • 1970-01-01
      • 2019-01-11
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多