Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreThe Spring for Apache Kafka (spring-kafka) project applies core Spring concepts to the development of Kafka-based messaging solutions. It provides a "template" as a high-level abstraction for sending messages. It also provides support for Message-driven POJOs with @KafkaListener
annotations and a "listener container". These libraries promote the use of dependency injection and declarative. In all of these cases, you will see similarities to the JMS support in the Spring Framework and RabbitMQ support in Spring AMQP.
KafkaTemplate
KafkaMessageListenerContainer
@KafkaListener
KafkaTransactionManager
spring-kafka-test
jar with embedded kafka server
Use the support tab above for information about supported versions.
Spring for Apache Kafka is based on the pure java kafka-clients
jar. The following is the compatibility matrix:
Spring for Apache Kafka Version | Spring Integration for Apache Kafka Version | kafka-clients |
Spring Boot |
---|---|---|---|
3.2.x | 6.3.x | 3.7.0 | 3.3.x |
3.1.x | 6.2.x | 3.6.0 | 3.2.x |
3.0.x | 3.3.2 to 3.6.0 | ||
IMPORTANT: This matrix is client compatibility; for a complete discussion about client/broker compatibility, see the Kafka Compatibility Matrix
These versions will be referenced transitively when using maven or gradle for version management.
Spring Boot 1.5 (EOL) users should use 1.3.x (Boot dependency management will use 1.1.x by default so this should be overridden).
Spring Boot 2.1 (EOL) users should use 2.2.x (Boot dependency management will use the correct version).
Spring Boot 2.2 (EOL) users should use 2.3.x (Boot dependency management will use the correct version, or override version to 2.4.x).
Spring Boot 2.3 (EOL) users should use 2.5.x (Boot dependency management will use the correct version, or override version to 2.6.x).
Spring Boot 2.4 (EOL) users should use 2.6.x (Boot dependency management will use the correct version, or override version to 2.7.x).
Spring Boot 2.5 (EOL) users should use 2.7.x (Boot dependency management will use the correct version).
Spring Boot 2.6 users should use 2.8.x (Boot dependency management will use the correct version).
Spring Boot 2.7 users should use 2.8.x, or 2.9.x (Boot dependency management will use the 2.8.x version).
To use 2.9.x with Boot 2.7.x; see Override Spring Boot Dependencies.
Spring Boot 3.0.x uses kafka-clients
3.3.2
Spring Boot 3.1.x uses kafka-clients
3.4.1
Bootstrap your application with Spring Initializr.