From 16bd513ebc8ebd359fd228530f9b60b99fdf2b18 Mon Sep 17 00:00:00 2001 From: Vincent Verhoeven Date: Wed, 18 Dec 2019 17:58:14 +0100 Subject: [PATCH] Fix typo's in properties The properties `spring.cloud.stream.binding.` do not exist, and should be `spring.cloud.stream.bindings.` --- docs/src/main/asciidoc/overview.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/main/asciidoc/overview.adoc b/docs/src/main/asciidoc/overview.adoc index de862eab3..b99804d26 100644 --- a/docs/src/main/asciidoc/overview.adoc +++ b/docs/src/main/asciidoc/overview.adoc @@ -425,7 +425,7 @@ This allows you to add arguments that are not currently directly supported by th === Receiving Batched Messages Normally, if a producer binding has `batch-enabled=true` (see <>), or a message is created by a `BatchingRabbitTemplate`, elements of the batch are returned as individual calls to the listener method. -Starting with version 3.0, any such batch can be presented as a `List` to the listener method if `spring.cloud.stream.binding..consumer.batch-mode` is set to `true`. +Starting with version 3.0, any such batch can be presented as a `List` to the listener method if `spring.cloud.stream.bindings..consumer.batch-mode` is set to `true`. [[rabbit-prod-props]] === Rabbit Producer Properties @@ -717,8 +717,8 @@ There are a number of rabbit-specific binding properties that allow you to modif If you have an existing exchange/queue that you wish to use, you can completely disable automatic provisioning as follows, assuming the exchange is named `myExchange` and the queue is named `myQueue`: -* `spring.cloud.stream.binding..destination=myExhange` -* `spring.cloud.stream.binding..group=myQueue` +* `spring.cloud.stream.bindings..destination=myExhange` +* `spring.cloud.stream.bindings..group=myQueue` * `spring.cloud.stream.rabbit.bindings..consumer.bindQueue=false` * `spring.cloud.stream.rabbit.bindings..consumer.declareExchange=false` * `spring.cloud.stream.rabbit.bindings..consumer.queueNameGroupOnly=true`