使用 KafkaTemplate 接收消息

本节介绍如何使用 KafkaTemplate 接收消息。

从 2.8 版本开始,模板有四个 receive() 方法

ConsumerRecord<K, V> receive(String topic, int partition, long offset);

ConsumerRecord<K, V> receive(String topic, int partition, long offset, Duration pollTimeout);

ConsumerRecords<K, V> receive(Collection<TopicPartitionOffset> requested);

ConsumerRecords<K, V> receive(Collection<TopicPartitionOffset> requested, Duration pollTimeout);

如您所见,您需要知道要检索的记录的分区和偏移量;每个操作都会创建一个新的 Consumer(并关闭)。

使用最后两种方法,每个记录都会被单独检索并将结果组装到 ConsumerRecords 对象中。在为请求创建 TopicPartitionOffset 时,仅支持正数的绝对偏移量。