Skip to content

TechPrimers/spring-boot-kafka-consumer-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Boot with Kafka Consumer Example

This Project covers how to use Spring Boot with Spring Kafka to Consume JSON/String message from Kafka topics

Start Zookeeper

  • bin/zookeeper-server-start.sh config/zookeeper.properties

Start Kafka Server

  • bin/kafka-server-start.sh config/server.properties

Create Kafka Topic

  • bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic Kafka_Example
  • bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic Kafka_Example_json

Publish to the Kafka Topic via Console

  • bin/kafka-console-producer.sh --broker-list localhost:9092 --topic Kafka_Example
  • bin/kafka-console-producer.sh --broker-list localhost:9092 --topic Kafka_Example_json

About

Spring Boot Kafka Consumer Example

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages