当前位置:   article > 正文

5.队列和交换机绑定_rabbitmq 一个队列绑定两个交换机

rabbitmq 一个队列绑定两个交换机

交换机是由双方同时声明,队列是由接收方声明并配置绑定关系

1.先使用rabbitmq包进行开发【偏底层】,适合了解原理

目前是每两个微服务之间的通信使用一个单独的交换机:

1.订单微服务和 餐厅微服务之间的通信

,是在订单微服务中声明,监听餐厅发送的消息

 

1.首先创建ConnectionFactory

2.通过ConnectionFactory创建Connection

3.通过Connection创建Channel

4.声明交换机

5.声明消息队列 【如果还需要监听其他微服务发送的消息,还是用同一个队列】

6.将交换机和队列绑定,确定绑定key

  1. ConnectionFactory connectionFactory = new ConnectionFactory();
  2. connectionFactory.setHost("localhost");
  3. connectionFactory.setHost("localhost");
  4. try (Connection connection = connectionFactory.newConnection();
  5. Channel channel = connection.createChannel()) {
  6. /*---------------------restaurant---------------------*/
  7. channel.exchangeDeclare(
  8. "exchange.order.restaurant",//交换机名称
  9. BuiltinExchangeType.DIRECT,//交换机类型
  10. true, //是否持久化
  11. false,//如果没有队列需要该交换机,mq是否将其删除
  12. null);//是否需要特殊参数
  13. channel.queueDeclare(
  14. "queue.order",//队列名称
  15. true,//是否持久化
  16. false,//该队列是不是被这个connection独占
  17. false,
  18. null);//是否需要特殊参数
  19. //将队列和交换机绑定,确定绑定key
  20. channel.queueBind(
  21. "queue.order",
  22. "exchange.order.restaurant",
  23. "key.order");

2.订单微服务中监听 餐厅,骑手微服务发送的消息

 

 

  1. public void handleMessage() throws IOException, TimeoutException, InterruptedException {
  2. log.info("start linstening message");
  3. ConnectionFactory connectionFactory = new ConnectionFactory();
  4. connectionFactory.setHost("localhost");
  5. connectionFactory.setHost("localhost");
  6. try (Connection connection = connectionFactory.newConnection();
  7. Channel channel = connection.createChannel()) {
  8. /*---------------------restaurant---------------------*/
  9. channel.exchangeDeclare(
  10. "exchange.order.restaurant",//交换机名称
  11. BuiltinExchangeType.DIRECT,//交换机类型
  12. true, //是否持久化
  13. false,//如果没有队列需要该交换机,mq是否将其删除
  14. null);//是否需要特殊参数
  15. channel.queueDeclare(
  16. "queue.order",//队列名称
  17. true,//是否持久化
  18. false,//该队列是不是被这个connection独占
  19. false,
  20. null);//是否需要特殊参数
  21. //将队列和交换机绑定,确定绑定key
  22. channel.queueBind(
  23. "queue.order",
  24. "exchange.order.restaurant",
  25. "key.order");
  26. /*---------------------deliveryman---------------------*/
  27. channel.exchangeDeclare(
  28. "exchange.order.deliveryman",
  29. BuiltinExchangeType.DIRECT,
  30. true,
  31. false,
  32. null);
  33. channel.queueBind(
  34. "queue.order",
  35. "exchange.order.deliveryman",
  36. "key.order");
  37. }
  38. }

 

声明了一个队列,俩个交换机, 将这个队列用相同的绑定key,将其绑定在两个交换机上

 

3.测试:

使用main方法进行测试

 

  1. public static void handleMessage() throws IOException, TimeoutException, InterruptedException {
  2. log.info("start linstening message");
  3. ConnectionFactory connectionFactory = new ConnectionFactory();
  4. connectionFactory.setHost("localhost");
  5. connectionFactory.setHost("localhost");
  6. try (Connection connection = connectionFactory.newConnection();
  7. Channel channel = connection.createChannel()) {
  8. /*---------------------restaurant---------------------*/
  9. channel.exchangeDeclare(
  10. "exchange.order.111",//交换机名称
  11. BuiltinExchangeType.DIRECT,//交换机类型
  12. true, //是否持久化
  13. false,//如果没有队列需要该交换机,mq是否将其删除
  14. null);//是否需要特殊参数
  15. channel.queueDeclare(
  16. "queue.order",//队列名称
  17. true,//是否持久化
  18. false,//该队列是不是被这个connection独占
  19. false,
  20. null);//是否需要特殊参数
  21. //将队列和交换机绑定,确定绑定key
  22. channel.queueBind(
  23. "queue.order",
  24. "exchange.order.restaurant",
  25. "key.order");
  26. /*---------------------deliveryman---------------------*/
  27. channel.exchangeDeclare(
  28. "exchange.order.222",
  29. BuiltinExchangeType.DIRECT,
  30. true,
  31. false,
  32. null);
  33. channel.queueBind(
  34. "queue.order",
  35. "exchange.order.deliveryman",
  36. "key.order");
  37. }
  38. }
  39. public static void main(String[] args) throws InterruptedException, TimeoutException, IOException {
  40. handleMessage();
  41. }

1.启动rabbitmq网页端:

2.找到exchange

运行后,能够找到,即绑定成功。

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/598248
推荐阅读
相关标签
  

闽ICP备14008679号