Skip to content

Commit a462676

Browse files
committed
Refactored application.yml and readme
1 parent d72ad0b commit a462676

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
# demo-spring-integration
1+
# spring-integration-rabbitmq-consumer
2+
3+
This is the consumer microservice of a message-driven microservices based on the publish/subscribe model using Spring Integration, Spring Cloud Stream and RabbitMQ message broker
4+
It is based on https://piotrminkowski.com/2018/06/15/building-and-testing-message-driven-microservices-using-spring-cloud-stream/
25

36
To start the rabbit-mq broker using docker, use the below command:
47
docker run -d -p 5672:5672 -p 15672:15672 --name my-rabbit rabbitmq:3-management
8+
9+
See # spring-integration-producer for the producer.

src/main/resources/application.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ spring:
66
stream:
77
bindings:
88
output:
9-
destination: orders-in
9+
destination: lines-in
1010
input:
11-
destination: orders-out
11+
destination: lines-out
1212
rabbit:
1313
bindings:
1414
output:

0 commit comments

Comments
 (0)