GH-1720: Default Property Doc Improvements

Fixes https://github.com/spring-cloud/spring-cloud-stream/issues/1720
Resolves #1724
This commit is contained in:
Gary Russell
2019-06-04 11:07:59 -04:00
committed by Oleg Zhurakousky
parent 3f86eff9cb
commit 51a1e6d8bd

View File

@@ -1388,7 +1388,7 @@ Default: `30`
Binding properties are supplied by using the format of `spring.cloud.stream.bindings.<channelName>.<property>=<value>`.
The `<channelName>` represents the name of the channel being configured (for example, `output` for a `Source`).
To avoid repetition, Spring Cloud Stream supports setting values for all channels, in the format of `spring.cloud.stream.default.<property>=<value>`.
To avoid repetition, Spring Cloud Stream supports setting values for all channels, in the format of `spring.cloud.stream.default.<property>=<value>` for common binding properties, and `spring.cloud.stream.default.<producer|consumer>.<property>=<value>`.
When it comes to avoiding repetitions for extended binding properties, this format should be used - `spring.cloud.stream.<binder-type>.default.<producer|consumer>.<property>=<value>`.