[ ] (https://bintray.com/elderbyte/maven/spring-boot-starter-kafka-embedded/_latestVersion)
Provides spring auto configuration for an embedded Kafka message broker.
Configure the embedded kafka broker in your apps application.yml
# Embedded Kafka Broker
kafka.embedded:
enabled: true
port: 9092
partitions: 1
When this starter is on the class-path, the broker will automatically get started.
To disable the broker, set the kafka.embedded.enabled
property to false
.