Reputation: 5420
We are trying to implement a message channel between a worker spring application and a consumer spring application (there will be replicas of the same consumer on multiple JVMs)
With the Java Config there is limited documentation for the spring integration and I was able to find a documentation for the spring Kafka.I am not exactly sure how the dependency is working,
Upvotes: 4
Views: 4323
Reputation: 174494
Spring Integration Kafka 2.0 is built on top of Spring Kafka (Spring Integration Kafka 1.x used the 0.8.x.x scala client directly).
The documentation for Spring Integration Kafka is in Chapter 6 of the Spring Kafka Reference Manual.
At some point, it is likely that spring-integration-kafka will be pulled into the main spring integration project/documentation.
Upvotes: 4