SpringAMQP RabbitMQ how to send directly to Queue without Exchange

心已入冬 提交于 2019-12-22 10:39:26

问题


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


回答1:


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);


来源:https://stackoverflow.com/questions/43408096/springamqp-rabbitmq-how-to-send-directly-to-queue-without-exchange

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!