https://github.com/mehmetpekdemir/spring-boot-apache-kafka
Spring Boot Apache Kafka
https://github.com/mehmetpekdemir/spring-boot-apache-kafka
apache-kafka java11 spring-boot zookeeper
Last synced: 6 months ago
JSON representation
Spring Boot Apache Kafka
- Host: GitHub
- URL: https://github.com/mehmetpekdemir/spring-boot-apache-kafka
- Owner: mehmetpekdemir
- License: mit
- Created: 2021-07-01T11:24:55.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-01T13:25:33.000Z (over 4 years ago)
- Last Synced: 2023-03-01T07:32:43.691Z (over 2 years ago)
- Topics: apache-kafka, java11, spring-boot, zookeeper
- Language: Java
- Homepage: https://github.com/mehmetpekdemir/spring-boot-apache-kafka
- Size: 39.1 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spring Boot Apache Kafka
### Spring Boot Apache Kafka Basic Sample
### Tech Stack
```
- Java 11
- Spring Framework
- Apache Kafka
- Integration Test
```### Requirements
For building and running the application you need :
```
- JDK 11
- Maven
- Docker
```### Build & Run
###### Docker
```
docker-compose up
```###### Backend
```
mvn clean install
``````
mvn --projects your-service spring-boot:run
```###### Request
```
curl -X POST -F 'message=Hello Mehmet' http://localhost:8080/api/v1/kafka
```