SpringBoot集成Rabbit使用TopicRabbit指定发送集合

举报
西魏陶渊明 发表于 2022/09/25 05:52:43 2022/09/25
【摘要】 Rabbitmq中绑定 exchange:flow routing-key:user bind-queue:flow_user 白话文就是,把user绑定到flow_user序列 发送方使用routing-key推送: //把routing-key发送给名为flow的exchenge,然后exchenge负责向绑定的这个Qu...

Rabbitmq中绑定

exchange:flow

routing-key:user

bind-queue:flow_user

白话文就是,把user绑定到flow_user序列

发送方使用routing-key推送:


  
  1. //把routing-key发送给名为flow的exchenge,然后exchenge负责向绑定的这个Queue推送
  2. amqpTemplate.convertAndSend("flow","user", context);

Rabbit配置

  • 添加exchange(这里类型type应该是topic,截图时候没有注意)
添加exchange
添加exchange
  • 添加Queue
添加Queue
添加Queue
  • 添加这个User 到exchange(注意routing-key)
%E7%82%B9%E5%87%BBflow%E8%BF%9B%E5%8E%BB%E6%B7%BB%E5%8A%A0rout-key.png?raw=true

SpringBoot集成Rabbitmq

  • 注册配置bean

  
  1. @Configurable
  2. public class TopicRabbitConfig {
  3. public final static String FLOW = "flow";
  4. public final static String USER = "user";
  5. public final static String USER_QUEUE = "flow_user";
  6. @Bean
  7. public Queue queueMessages3() {
  8. return new Queue(USER_QUEUE);
  9. }
  10. @Bean
  11. TopicExchange exchange() {
  12. return new TopicExchange(FLOW);
  13. }
  14. @Bean
  15. Binding bindingExchangeMessages3(Queue queueMessages3, TopicExchange exchange) {
  16. return BindingBuilder.bind(queueMessages3).to(exchange).with(FLOW);
  17. }
  18. }
  • 发送方代码

  
  1. /**
  2. * @Package: pterosaur.account.service.impl
  3. * @Description: 模拟发送消息,测试使用
  4. * @author: liuxin
  5. * @date: 17/4/19 下午3:17
  6. */
  7. @Component
  8. public class AccountSentImpl {
  9. @Autowired
  10. private AmqpTemplate amqpTemplate;
  11. private ExecutorService threadPool = Executors.newFixedThreadPool(8);
  12. public void send() {
  13. for (int i=0;i<10;i++){
  14. String context = "hello :" + DateUtil.formatDatetime(System.currentTimeMillis())+",当前线程:"+Thread.currentThread().getName();
  15. System.out.println("Sender : " + context);
  16. threadPool.execute(new Runnable() {
  17. @Override
  18. public void run() {
  19. amqpTemplate.convertAndSend(TopicRabbitConfig.FLOW,TopicRabbitConfig.USER, context);
  20. }
  21. });
  22. }
  23. }
  24. }
  • 接受方代码

  
  1. /**
  2. * @Package: pterosaur.account.service.impl
  3. * @Description: mq信息处理实现类
  4. * @author: liuxin
  5. * @date: 17/4/19 下午2:55
  6. */
  7. @Component
  8. public class AccountReceiverImpl implements AccountReceiver {
  9. private static final Logger logger = LoggerFactory.getLogger(AccountReceiverImpl.class);
  10. @Autowired
  11. ExecutorService threadPool;
  12. /**
  13. * 用户流水
  14. *
  15. * @param message
  16. */
  17. @RabbitListener(queues = TopicRabbitConfig.USER_QUEUE)
  18. @RabbitHandler
  19. public void processUser(String message) {
  20. threadPool.execute(new Runnable() {
  21. @Override
  22. public void run() {
  23. logger.info("用户侧流水:{}",message);
  24. }
  25. });
  26. }
  27. }
  • 测试代码

  
  1. Sender : hello :2017-04-25 17:44:15,当前线程:main
  2. Sender : hello :2017-04-25 17:44:20,当前线程:main
  3. 2017-04-25 17:44:25.754 INFO 67685 --- [pool-1-thread-1] p.a.service.impl.AccountReceiverImpl : 用户侧流水:hello :2017-04-25 17:44:20,当前线程:main
  4. Sender : hello :2017-04-25 17:44:25,当前线程:main
  5. Sender : hello :2017-04-25 17:44:30,当前线程:main
  6. 2017-04-25 17:44:32.048 INFO 67685 --- [pool-1-thread-2] p.a.service.impl.AccountReceiverImpl : 用户侧流水:hello :2017-04-25 17:44:30,当前线程:main
  7. Sender : hello :2017-04-25 17:44:32,当前线程:main
  8. Sender : hello :2017-04-25 17:44:33,当前线程:main
  9. 2017-04-25 17:44:35.556 INFO 67685 --- [pool-1-thread-3] p.a.service.impl.AccountReceiverImpl : 用户侧流水:hello :2017-04-25 17:44:33,当前线程:main
  10. Sender : hello :2017-04-25 17:44:35,当前线程:main
  11. Sender : hello :2017-04-25 17:44:37,当前线程:main
  12. 2017-04-25 17:44:38.797 INFO 67685 --- [pool-1-thread-1] p.a.service.impl.AccountReceiverImpl : 用户侧流水:hello :2017-04-25 17:44:37,当前线程:main

文章来源: springlearn.blog.csdn.net,作者:西魏陶渊明,版权归原作者所有,如需转载,请联系作者。

原文链接:springlearn.blog.csdn.net/article/details/102425286

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。