I could not find anything in the documentation regarding my issue. If it is there and I missed it, please point it out to me.
I have a RabbitMQ message producer service using Spring Cloud Stream, and my configuration is as follows:
spring:
cloud:
stream:
bindings:
outputSink-out-0:
destination: foo
producer:
requiredGroups: bar
The above configuration creates my foo
exchange in RabbitMQ and a bar
queue with a routing key of #
. My question is, how can I configure a specific routing key, such as test.#
, for the bar
queue?