Using RKraft broker with GlobalEmbeddedKafkaTestExecutionListener #3241
-
Hey, we'd like to use the RKraft broker for our integration test with Is it possible to access the broker address as exposed by |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Spring Boot auto-configuration for Apache Kafka relies on the
So, everything you talk about has to work out-of-the-box. But yeah, only against random ports populated by the |
Beta Was this translation helpful? Give feedback.
Spring Boot auto-configuration for Apache Kafka relies on the
KafkaProperties
file.The
EmbeddedKafkaBroker
implementation expose respective Spring Boot property on its start:So, everything you talk about has to work out-of-the-box. But yeah, only against random ports populated by the
KafkaClusterTestKit
.That's the limitation we have to deal with for now.