我有一个Spring Boot应用程序,它的使用者使用一个集群中的主题,然后消费到另一个集群中的另一个主题。
现在,我正在尝试使用Spring嵌入式Kafka编写集成测试用例,但遇到问题KafkaTemplate could not be registered. A bean with that name has already been defined in class path resource
消费阶层
@Service
public class KafkaConsumerService {
@Autowired
private KafkaProducerService kafkaProducerService;
@KafkaListener(topics = "${kafka.producer.topic}")
public void professor(List<Professor> pro) {
pro.forEach(kafkaProducerService::produce);
}
}
生产者类别
@Service
public class KafkaProducerService {
@Value("${kafka.producer.topic}")
private String topic;
@Autowired
private KafkaTemplate<String, Object> kafkaTemplate;
public void produce(Professor pro) {
kafkaTemplate.send(topic,"professor",pro);
}
}
在我的测试案例中,我想覆盖KafkaTemplate
,以便当我在kafkaConsumerService.professor
中调用Test
方法时,它应该将数据生成到嵌入式Kafka中,并且应该对其进行验证。
测试配置
@TestConfiguration
@EmbeddedKafka(partitions = 1, controlledShutdown = false,
brokerProperties = {"listeners=PLAINTEXT://localhost:3333", "port=3333"})
public class KafkaProducerConfigTest {
@Autowired
KafkaEmbedded kafkaEmbeded;
@Autowired
KafkaListenerEndpointRegistry kafkaListenerEndpointRegistry;
@Before
public void setUp() throws Exception {
for (MessageListenerContainer messageListenerContainer : kafkaListenerEndpointRegistry.getListenerContainers()) {
ContainerTestUtils.waitForAssignment(messageListenerContainer,
kafkaEmbeded.getPartitionsPerTopic());
}
}
@Bean
public ProducerFactory<String, Object> producerFactory() {
return new DefaultKafkaProducerFactory<>(KafkaTestUtils.producerProps(kafkaEmbeded));
}
@Bean
public KafkaTemplate<String, Object> kafkaTemplate() {
KafkaTemplate<String, Object> kafkaTemplate = new KafkaTemplate<>(producerFactory());
return kafkaTemplate;
}
}
测试课程
@EnableKafka
@SpringBootTest(classes = {KafkaProducerConfigTest.class})
@RunWith(SpringRunner.class)
public class KafkaProducerServiceTest {
@Autowired
private KafkaConsumerService kafkaConsumerService;
@Test
public void testReceive() throws Exception {
kafkaConsumerService.professor(Arrays.asList(new Professor()));
//How to check messages is sent to kafka?
}
}
错误
The bean 'kafkaTemplate', defined in com.kafka.configuration.KafkaProducerConfigTest, could not be registered.
A bean with that name has already been defined in class path resource [com/kafka/configuration/KafkaProducerConfig.class] and overriding is disabled.
Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true
还有人可以帮助我如何验证发送到嵌入式Kafka服务器的消息吗?
注意,我有一些过时的警告
不推荐使用KafkaEmbedded类型
不推荐使用KafkaEmbedded类型的getPartitionsPerTopic()方法
不推荐使用KafkaTestUtils类型的方法producerProps(KafkaEmbedded)
答案 0 :(得分:2)
启动2.1 disables bean overriding by default。
默认情况下禁用Bean覆盖,以防止意外覆盖Bean。如果您要依赖覆盖,则需要将
spring.main.allow-bean-definition-overriding
设置为true
。
关于弃用;请参阅@EmbeddedKafka
的javadocs。它将替换为EmbeddedKafkaBroker
。