其他分享
首页 > 其他分享> > 一个Spring的KafkaConsumer监听器可以监听多个主题吗?

一个Spring的KafkaConsumer监听器可以监听多个主题吗?

作者:互联网

任何人都知道单个监听器是否可以监听下面的多个主题?我知道只有“topic1”有效,如果我想添加其他主题怎么办?你能否在下面展示两个例子?谢谢您的帮助!

@KafkaListener(topics = "topic1,topic2")
public void listen(ConsumerRecord<?, ?> record, Acknowledgment ack) {
    System.out.println(record);
} 

要么

ContainerProperties containerProps = new ContainerProperties(new TopicPartitionInitialOffset("topic1, topic2", 0));

解决方法:

是的,只需按照@KafkaListener JavaDocs:

/**
 * The topics for this listener.
 * The entries can be 'topic name', 'property-placeholder keys' or 'expressions'.
 * Expression must be resolved to the topic name.
 * Mutually exclusive with {@link #topicPattern()} and {@link #topicPartitions()}.
 * @return the topic names or expressions (SpEL) to listen to.
 */
String[] topics() default {};

/**
 * The topic pattern for this listener.
 * The entries can be 'topic name', 'property-placeholder keys' or 'expressions'.
 * Expression must be resolved to the topic pattern.
 * Mutually exclusive with {@link #topics()} and {@link #topicPartitions()}.
 * @return the topic pattern or expression (SpEL).
 */
String topicPattern() default "";

/**
 * The topicPartitions for this listener.
 * Mutually exclusive with {@link #topicPattern()} and {@link #topics()}.
 * @return the topic names or expressions (SpEL) to listen to.
 */
TopicPartition[] topicPartitions() default {};

所以,你的用例应该是这样的:

@KafkaListener(topics = {"topic1" , "topic2"})

标签:spring,spring-boot-2,spring-kafka
来源: https://codeday.me/bug/20190519/1133824.html