From 0eae62f11394fd45610a43457c6d2a624ed6a84a Mon Sep 17 00:00:00 2001 From: Marius Bogoevici Date: Mon, 22 Aug 2016 16:55:53 -0400 Subject: [PATCH] Add concrete example of using RabbitMQ --- .../main/asciidoc/spring-cloud-stream-overview.adoc | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/spring-cloud-stream-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc b/spring-cloud-stream-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc index e0354f25f..f224253a4 100644 --- a/spring-cloud-stream-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc +++ b/spring-cloud-stream-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc @@ -735,8 +735,17 @@ Each Binder implementation typically connects to one type of messaging system. By default, Spring Cloud Stream relies on Spring Boot's auto-configuration to configure the binding process. If a single Binder implementation is found on the classpath, Spring Cloud Stream will use it automatically. -For example, a Spring Cloud Stream project that aims to bind only to RabbitMQ can simply add that binder dependency. -For the specific maven coordinates of the binder dependency, please refer to the docs for the binder implementation. +For example, a Spring Cloud Stream project that aims to bind only to RabbitMQ can simply add the following dependency: + +[source,xml] +---- + + org.springframework.cloud + spring-cloud-stream-binder-rabbit + +---- + +For the specific maven coordinates of other binder dependencies, please refer to the documentation of that binder implementation. [[multiple-binders]] === Multiple Binders on the Classpath