GH-212: Configurable anonymous queue name prefix

Resolves https://github.com/spring-cloud/spring-cloud-stream-binder-rabbit/issues/212

Enable configuration of the prefix part of anonymous auto-delete queues.
This commit is contained in:
Gary Russell
2019-04-09 11:34:06 -04:00
committed by Oleg Zhurakousky
parent 442f04dadf
commit 31f02523d7
4 changed files with 49 additions and 4 deletions

View File

@@ -122,6 +122,12 @@ acknowledgeMode::
The acknowledge mode.
+
Default: `AUTO`.
anonymousGroupPrefix::
When the binding has no `group` property, an anonymous, auto-delete queue is bound to the destination exchange.
The default naming stragegy for such queues results in a queue named `anonymous.<base64 representation of a UUID>`.
Set this property to change the prefix to something other than the default.
+
Default: `anonymous.`.
autoBindDlq::
Whether to automatically declare the DLQ and bind it to the binder DLX.
+