https://github.com/techguy-bhushan/spring-cloud-stream-sample-app
Spring cloud stream sample app
https://github.com/techguy-bhushan/spring-cloud-stream-sample-app
microservice rabbitmq spring-cloud-stream
Last synced: 9 months ago
JSON representation
Spring cloud stream sample app
- Host: GitHub
- URL: https://github.com/techguy-bhushan/spring-cloud-stream-sample-app
- Owner: techguy-bhushan
- Created: 2017-09-24T09:11:18.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-14T06:49:23.000Z (over 8 years ago)
- Last Synced: 2025-01-17T22:09:00.805Z (about 1 year ago)
- Topics: microservice, rabbitmq, spring-cloud-stream
- Language: Java
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring-cloud-stream
Spring Cloud Stream is a framework for building message-driven microservices.
# Required setup:
* Java 8
* Maven 3 +
* RabbitMq
This Sample requires RabbitMq to be running on localhost.
DOCKER CONTAINER For RabbitMq :
docker run -d --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:management
Here 2 Spring Boot microservices application first one name with producer and another one is a consumer, both are using Spring Cloud Stream,
producer microservice will generate the payload and consumer microservice will receive this payload and print on console.