gpt4 book ai didi

spring-boot - 单元测试用例中的@KafkaListener 不消耗容器工厂

转载 作者:行者123 更新时间:2023-12-04 02:59:07 25 4
gpt4 key购买 nike

我编写了一个 JUnit 测试用例来测试 Spring Kafka 文档中“使用 Java 配置”类(class)中的代码。 ( https://docs.spring.io/spring-kafka/reference/htmlsingle/#_with_java_configuration )。唯一的区别是我在类里面使用了嵌入式 Kafka 服务器,而不是本地主机服务器。我正在使用 Spring Boot 2.0.2 及其 Spring-Kafka 依赖项。

在运行这个测试用例时,我发现消费者没有从主题中读取消息,并且“assertTrue”检查失败。没有其他错误。

@RunWith(SpringRunner.class)
public class SpringConfigSendReceiveMessage {

public static final String DEMO_TOPIC = "demo_topic";
@Autowired
private Listener listener;

@Test
public void testSimple() throws Exception {
template.send(DEMO_TOPIC, 0, "foo");
template.flush();
assertTrue(this.listener.latch.await(60, TimeUnit.SECONDS));
}

@Autowired
private KafkaTemplate<Integer, String> template;

@Configuration
@EnableKafka
public static class Config {

@Bean
public KafkaEmbedded kafkaEmbedded() {
return new KafkaEmbedded(1, true, 1, DEMO_TOPIC);
}

@Bean
public ConsumerFactory<Integer, String> createConsumerFactory() {
Map<String, Object> props = new HashMap<>();
props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, kafkaEmbedded().getBrokersAsString());
props.put(ConsumerConfig.GROUP_ID_CONFIG, "group1");
props.put(ConsumerConfig.ENABLE_AUTO_COMMIT_CONFIG, true);
props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, IntegerDeserializer.class);
props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class);
return new DefaultKafkaConsumerFactory<>(props);
}

@Bean
public ConcurrentKafkaListenerContainerFactory<Integer, String> kafkaListenerContainerFactory() {
ConcurrentKafkaListenerContainerFactory<Integer, String> factory = new ConcurrentKafkaListenerContainerFactory<>();
factory.setConsumerFactory(createConsumerFactory());
return factory;
}

@Bean
public Listener listener() {
return new Listener();
}

@Bean
public ProducerFactory<Integer, String> producerFactory() {
Map<String, Object> props = new HashMap<>();
props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, kafkaEmbedded().getBrokersAsString());
props.put(ProducerConfig.RETRIES_CONFIG, 0);
props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, IntegerSerializer.class);
props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, StringSerializer.class);
return new DefaultKafkaProducerFactory<>(props);
}

@Bean
public KafkaTemplate<Integer, String> kafkaTemplate() {
return new KafkaTemplate<Integer, String>(producerFactory());
}
}

}

class Listener {
public final CountDownLatch latch = new CountDownLatch(1);

@KafkaListener(id = "foo", topics = DEMO_TOPIC)
public void listen1(String foo) {
this.latch.countDown();
}
}

我认为这是因为@KafkaListener 在阅读主题时使用了一些错误/默认设置。我在日志中没有看到任何错误。

这个单元测试用例是否正确?我如何找到为 KafkaListener 注释创建的对象并查看它使用哪个 Kafka 代理?任何输入都会有所帮助。谢谢。

最佳答案

消息在消费者启动之前发送。

默认情况下,新消费者在主题结束时开始消费。

添加

props.put(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "earliest");

关于spring-boot - 单元测试用例中的@KafkaListener 不消耗容器工厂,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51219428/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com