Spring Boot and Kafka: Real-Time Data Processing

Igor Venturelli
CodeX
Published in
4 min readAug 5, 2024

In the world of modern application development, real-time data processing is a critical component. Whether it’s processing user interactions, monitoring system health, or tracking financial transactions, real-time data helps businesses make informed decisions instantly. One of the most popular tools for real-time data processing is Apache Kafka. In this blog post, we’ll explore how to integrate Apache Kafka with Spring Boot to build powerful real-time data processing applications.

Photo by Matias Misael on Unsplash

What is Apache Kafka?

Apache Kafka is an open-source distributed event streaming platform capable of handling trillions of events a day. It was originally developed by LinkedIn and later open-sourced through the Apache Software Foundation. Kafka is designed to be a high-throughput, low-latency platform for handling real-time data feeds.

Why is it Named Kafka?

The name Kafka is a tribute to Franz Kafka, the renowned writer known for his complex and thought-provoking works. Jay Kreps, one of Kafka’s creators, chose the name because he liked the author’s writing and because the system they were developing needed to handle the complexities and intricacies of data streaming, much like the narratives in Kafka’s novels.

Key Concepts in Apache Kafka

Before diving into the integration, it’s essential to understand some key concepts in Kafka:

Topics

Topics are categories or feed names to which records are sent. Think of a topic as a channel where data is published. Each topic can handle multiple types of data streams, and each stream is ordered and immutable.

Partitions

Partitions are a way to divide a topic into several chunks to allow parallel processing. Each partition is an ordered sequence of records and can be distributed across multiple Kafka brokers to enhance scalability and reliability.

Producers

Producers are applications that send data to Kafka topics. They are responsible for creating and publishing messages to one or more topics.

Consumers

Consumers are applications that read data from Kafka topics. They subscribe to one or more topics and process the data as it becomes available.

Integrating Kafka with Spring Boot

To integrate Kafka with Spring Boot, you’ll need to add the necessary dependencies and configure your application to connect to a Kafka cluster.

Spring Boot integrated with Apache Kafka

Dependencies

First, you need to add the Kafka dependencies to your Spring Boot application. In your pom.xml file, include the following:

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.kafka</groupId>
<artifactId>spring-kafka</artifactId>
</dependency>
</dependencies>

Configuration

Next, you need to configure the Kafka properties in your application.yml or application.properties file:

spring:
kafka:
bootstrap-servers: localhost:9092
consumer:
group-id: my-group
auto-offset-reset: earliest
producer:
key-serializer: org.apache.kafka.common.serialization.StringSerializer
value-serializer: org.apache.kafka.common.serialization.StringSerializer
consumer:
key-deserializer: org.apache.kafka.common.serialization.StringDeserializer
value-deserializer: org.apache.kafka.common.serialization.StringDeserializer

Producing Messages

To produce messages to a Kafka topic, you can create a simple producer service. Here’s an example:

import org.springframework.kafka.core.KafkaTemplate;
import org.springframework.stereotype.Service;

@Service
public class KafkaProducer {
private final KafkaTemplate<String, String> kafkaTemplate;
public KafkaProducer(KafkaTemplate<String, String> kafkaTemplate) {
this.kafkaTemplate = kafkaTemplate;
}
public void sendMessage(String topic, String message) {
kafkaTemplate.send(topic, message);
}
}

Consuming Messages

To consume messages from a Kafka topic, you can create a consumer service with a listener. Here’s an example:

import org.springframework.kafka.annotation.KafkaListener;
import org.springframework.stereotype.Service;

@Service
public class KafkaConsumer {
@KafkaListener(topics = "my-topic", groupId = "my-group")
public void listen(String message) {
System.out.println("Received Message: " + message);
}
}

Example Application

Now, let’s put it all together in a simple Spring Boot application.

Create a Spring Boot Project:

  • Use Spring Initializr to generate a Spring Boot project with dependencies for Spring Web and Spring for Apache Kafka.

Add Kafka Dependencies:

  • Add the Kafka dependencies to your pom.xml.

Configure Kafka:

  • Configure the Kafka properties in your application.yml.

Create Producer and Consumer Services:

  • Implement the KafkaProducer and KafkaConsumer services as shown above.

Test the Application:

  • Create a REST controller to test the producer:
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class KafkaController {
private final KafkaProducer kafkaProducer;
public KafkaController(KafkaProducer kafkaProducer) {
this.kafkaProducer = kafkaProducer;
}
@PostMapping("/publish")
public String publishMessage(@RequestParam String message) {
kafkaProducer.sendMessage("my-topic", message);
return "Message published!";
}
}

Run the Application:

Benefits of Using Kafka with Spring Boot

  • Scalability: Kafka can handle large volumes of data with ease, and Spring Boot makes it easy to scale your applications horizontally.
  • Reliability: Kafka’s partitioning and replication features ensure high availability and fault tolerance.
  • Ease of Use: Spring Boot’s integration with Kafka simplifies the development process, allowing you to focus on business logic rather than boilerplate code.

Conclusion

Integrating Apache Kafka with Spring Boot provides a powerful solution for real-time data processing. With Kafka’s robust event streaming capabilities and Spring Boot’s ease of use, you can build scalable, reliable, and efficient applications to handle real-time data. Whether you’re building a new application or adding real-time capabilities to an existing one, Kafka and Spring Boot are a perfect match.

Let’s connect!

➡️ LinkedIn
➡️ Site
Buy me a Coffee

--

--