Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SpringAMQP RabbitMQ how to send directly to Queue without Exchange

I'm using SpringAMQP with Rabbit template. How to send messages directly to Queues omitting Exchange? How can i do it?

like image 363
munja777 Avatar asked Apr 14 '17 08:04

munja777


1 Answers

How can i do it?

You can't; publishers don't know about queues; just exchanges and routing keys.

However, all queues are bound to the default exchange ("") with the queue name as its routing key.

If you are using Spring AMQP's RabbitTemplate, it is configured to publish to the default exchange by default, so you can use

convertAndSend("myQueue", "foo")`

Or even...

template.setDefaultRoutingKey("myQueue");

then

template.convertAndSend("foo");

or

template.send(aMessage);
like image 90
Gary Russell Avatar answered Sep 30 '22 11:09

Gary Russell