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