Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ashutoshsahoo/gs-spring-boot-kafka
- Owner: ashutoshsahoo
- Created: 2022-04-06T16:54:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-07T17:12:39.000Z (about 1 year ago)
- Last Synced: 2024-05-07T18:26:11.431Z (8 months ago)
- Topics: avro-kafka, avro-schema, avro-schema-registry, kafka, kafka-consumer, kafka-producer, schema-registry, spring-boot
- Language: Java
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.MD
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"
}'```