Kafka Messaging with Spring Boot

1 · Kumar Rohit · May 2, 2020, midnight
In my previous article we looked at setting up Kafka on our local machine. Now we will write a spring boot application and integrate Kafka messaging. Let’s start with a simple spring boot application. Below is the pom file for this application. <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> ...