Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ashutoshsahoo/gs-spring-boot-kafka

Spring Boot Kafka Schema Registry
https://github.com/ashutoshsahoo/gs-spring-boot-kafka

avro-kafka avro-schema avro-schema-registry kafka kafka-consumer kafka-producer schema-registry spring-boot

Last synced: 27 days ago
JSON representation

Spring Boot Kafka Schema Registry

Awesome Lists containing this project

README

        

# Spring Boot Kafka

## Run application

* Use docker to deploy kafka with registry
* Run gradle build to generate avro source files
* Run application
* Use following request to send data to kafka topic

```shell

curl --location --request POST 'http://127.0.0.1:8080/api/v1/users' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": "1001",
"name": "Ashutosh"
}'

```