热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

springboot+rabbitmq路由模式

路由模式是把队列通过rout绑定到交换机上首先是POMorg.springframework.boot

路由模式是把队列通过rout绑定到交换机上

首先是POM

org.springframework.bootspring-boot-starter-webcom.alibabafastjson1.2.75org.springframework.bootspring-boot-starter-amqp
生产者

配置文件

server:port: 7001
spring:rabbitmq:host: localhostport: 5672username: xxpassword: xxvirtual-host: /

常量类

package com.example.rabbitmq.constant;public class Constant {//队列名称public static final String DIRECT_QUEUE_NAME02 = "testDirectQueue02";//队列名称public static final String DIRECT_QUEUE_NAME = "testDirectQueue";//交换机名称public static final String DIRECT_EXCHANGE_NAME = "testDirectExchange";//交换机绑定routpublic static final String DIRECT_ROUTING = "testDirectRouting";//交换机绑定routpublic static final String DIRECT_ROUTING02 = "testDirectRouting02";
}

rabbitmq配置类

package com.example.rabbitmq.config;import com.example.rabbitmq.constant.Constant;
import org.springframework.amqp.core.Binding;
import org.springframework.amqp.core.BindingBuilder;
import org.springframework.amqp.core.DirectExchange;
import org.springframework.amqp.core.Queue;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;/*** rabbitmq配置*/
@Configuration
public class RabbitConfig {// durable:是否持久化,默认是false,持久化队列:会被存储在磁盘上,当消息代理重启时仍然存在,暂存队列:当前连接有效// exclusive:默认也是false,只能被当前创建的连接使用,而且当连接关闭后队列即被删除。此参考优先级高于durable// autoDelete:是否自动删除,当没有生产者或者消费者使用此队列,该队列会自动删除。// return new Queue("TestDirectQueue",true,true,false);//一般设置一下队列的持久化就好,其余两个就是默认false@Beanpublic Queue testDirectQueue() {//第一个队列return new Queue(Constant.DIRECT_QUEUE_NAME, true);}// 路由模式 start// 生产者通过路由方式 把队列绑定到交换机上// 消息对于多个消费者来说 消息只能被消费一次// 生产消息的时候指定交换机和路由,就会发送到绑定的队列上面// 消费者只要消费指定的队列就可以了 不会消费同一个交换机上的其他队列// 也就是说一个交换机可以绑定多个队列//Direct交换机 起名:testDirectExchange@Beanpublic DirectExchange testDirectExchange() {return new DirectExchange(Constant.DIRECT_EXCHANGE_NAME, true, false);}//把第一个队列和交换机绑定@Beanpublic Binding bindingDirect() {return BindingBuilder.bind(testDirectQueue()).to(testDirectExchange()).with(Constant.DIRECT_ROUTING);}// 路由模式 end@Beanpublic Queue testDirectQueue02(){//第二个队列return new Queue(Constant.DIRECT_QUEUE_NAME02,true);}//第二个队列和交换机绑定@Beanpublic Binding bindingDirect02() {return BindingBuilder.bind(testDirectQueue02()).to(testDirectExchange()).with(Constant.DIRECT_ROUTING02);}
}

controller  这里总共调用了10次接口,发现消费者总共消费了10次,因为虽然是同一个交换机  但是绑定的队列不一样,消费者消费的是队列 不是交换机

package com.example.rabbitmq.controller;import com.alibaba.fastjson.JSON;
import com.example.rabbitmq.constant.Constant;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;import java.util.HashMap;
import java.util.Map;
import java.util.UUID;@RestController
public class RabbitmqController {&#64;Autowiredprivate RabbitTemplate rabbitTemplate;&#64;RequestMapping("/directMq")public void directMq() {Map map &#61; new HashMap<>();map.put("messageId", UUID.randomUUID());map.put("messageData", "hello testDirect");map.put("createTime", System.currentTimeMillis());//Constant.DIRECT_ROUTING 对应的队列是testDirectQueuerabbitTemplate.convertAndSend(Constant.DIRECT_EXCHANGE_NAME, Constant.DIRECT_ROUTING, JSON.toJSONString(map));//Constant.DIRECT_ROUTING02 对应的队列是testDirectQueue02rabbitTemplate.convertAndSend(Constant.DIRECT_EXCHANGE_NAME, Constant.DIRECT_ROUTING02, JSON.toJSONString(map));//rabbitTemplate.convertAndSend(Constant.DIRECT_QUEUE_NAME,JSON.toJSONString(map));}
}

消费者


配置文件

server:port: 7002
spring:rabbitmq:host: localhostport: 5672username: xxpassword: xxvirtual-host: /listener:simple:acknowledge-mode: manualretry:enabled: trueprefetch: 1

消费者1代码

package com.example.rabbitmq.mq;import com.rabbitmq.client.Channel;
import org.springframework.amqp.core.Message;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.support.AmqpHeaders;
import org.springframework.messaging.handler.annotation.Header;
import org.springframework.stereotype.Component;import java.io.IOException;
import java.nio.charset.StandardCharsets;&#64;Component
public class RabbitmqListener {&#64;RabbitListener(queues &#61; "testDirectQueue")public void listener(Message message, &#64;Header(AmqpHeaders.DELIVERY_TAG) long deliveryTag, Channel channel) {String msg &#61; new String(message.getBody(), StandardCharsets.UTF_8);System.out.println("01&#61;&#61;" &#43; msg);try {channel.basicAck(deliveryTag,false);} catch (IOException e) {e.printStackTrace();}}
}

消费者2代码

package com.example.rabbitmq.mq;import com.rabbitmq.client.Channel;
import org.springframework.amqp.core.Message;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.support.AmqpHeaders;
import org.springframework.messaging.handler.annotation.Header;
import org.springframework.stereotype.Component;import java.io.IOException;
import java.nio.charset.StandardCharsets;&#64;Component
public class RabbitmqListener {&#64;RabbitListener(queues &#61; "testDirectQueue")public void listener(Message message, &#64;Header(AmqpHeaders.DELIVERY_TAG) long deliveryTag, Channel channel) {String msg &#61; new String(message.getBody(), StandardCharsets.UTF_8);System.out.println("02&#61;&#61;" &#43; msg);try {channel.basicAck(deliveryTag,false);} catch (IOException e) {e.printStackTrace();}}
}

发送10条消息查看消费情况

消费者1

消费者2

这里修改下代码&#xff0c;

        消费者1消费队列testDirectQueue

        消费者2消费队列testDirectQueue02

只修改消费者2的代码即可

package com.example.rabbitmq.mq;import com.rabbitmq.client.Channel;
import org.springframework.amqp.core.Message;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.support.AmqpHeaders;
import org.springframework.messaging.handler.annotation.Header;
import org.springframework.stereotype.Component;import java.io.IOException;
import java.nio.charset.StandardCharsets;&#64;Component
public class RabbitmqListener {&#64;RabbitListener(queues &#61; "testDirectQueue02")public void listener(Message message, &#64;Header(AmqpHeaders.DELIVERY_TAG) long deliveryTag, Channel channel) {String msg &#61; new String(message.getBody(), StandardCharsets.UTF_8);System.out.println("02&#61;&#61;" &#43; msg);try {channel.basicAck(deliveryTag,false);} catch (IOException e) {e.printStackTrace();}}
}

再次请求生产者接口10次 发现打印结果是

消费者1

消费者2

再次证明消费者消费的是队列不是交换机


推荐阅读
  • 利用GitHub热门资源,成功斩获阿里、京东、腾讯三巨头Offer
    Spring框架作为Java生态系统中的重要组成部分,因其强大的功能和灵活的扩展性,被广泛应用于各种规模的企业级应用开发中。本文将通过一份在GitHub上获得极高评价的Spring全家桶文档,探讨如何掌握Spring框架及其相关技术,助力职业发展。 ... [详细]
  • 本文探讨了如何通过一系列技术手段提升Spring Boot项目的并发处理能力,解决生产环境中因慢请求导致的系统性能下降问题。 ... [详细]
  • 历经两个月,他成功斩获阿里巴巴Offer
    经过两个月的努力,一位普通的双非本科毕业生最终成功获得了阿里巴巴的录用通知。 ... [详细]
  • 深入解析SpringMVC核心组件:DispatcherServlet的工作原理
    本文详细探讨了SpringMVC的核心组件——DispatcherServlet的运作机制,旨在帮助有一定Java和Spring基础的开发人员理解HTTP请求是如何被映射到Controller并执行的。文章将解答以下问题:1. HTTP请求如何映射到Controller;2. Controller是如何被执行的。 ... [详细]
  • 本文深入探讨了UNIX/Linux系统中的进程间通信(IPC)机制,包括消息传递、同步和共享内存等。详细介绍了管道(Pipe)、有名管道(FIFO)、Posix和System V消息队列、互斥锁与条件变量、读写锁、信号量以及共享内存的使用方法和应用场景。 ... [详细]
  • springMVC JRS303验证 ... [详细]
  • 一、搭建项目创建Maven项目导入rabbitmq包com.rabbitmqamqp-clien ... [详细]
  • 深入解析Spring启动过程
    本文详细介绍了Spring框架的启动流程,帮助开发者理解其内部机制。通过具体示例和代码片段,解释了Bean定义、工厂类、读取器以及条件评估等关键概念,使读者能够更全面地掌握Spring的初始化过程。 ... [详细]
  • 并发编程 12—— 任务取消与关闭 之 shutdownNow 的局限性
    Java并发编程实践目录并发编程01——ThreadLocal并发编程02——ConcurrentHashMap并发编程03——阻塞队列和生产者-消费者模式并发编程04——闭锁Co ... [详细]
  • 深入解析 Android IPC 中的 Messenger 机制
    本文详细介绍了 Android 中基于消息传递的进程间通信(IPC)机制——Messenger。通过实例和源码分析,帮助开发者更好地理解和使用这一高效的通信工具。 ... [详细]
  • 深入解析Spring Boot自动配置机制
    本文旨在深入探讨Spring Boot的自动配置机制,特别是如何利用配置文件进行有效的设置。通过实例分析,如Http编码自动配置,我们将揭示配置项的具体作用及其背后的实现逻辑。 ... [详细]
  • Spring Cloud Config 使用 Vault 作为配置存储
    本文探讨了如何在Spring Cloud Config中集成HashiCorp Vault作为配置存储解决方案,基于Spring Cloud Hoxton.RELEASE及Spring Boot 2.2.1.RELEASE版本。文章还提供了详细的配置示例和实践建议。 ... [详细]
  • 利用RabbitMQ实现高效延迟任务处理
    本文详细探讨了如何利用RabbitMQ实现延迟任务,包括其应用场景、实现原理、系统设计以及具体的Spring Boot实现方式。 ... [详细]
  • 本文提供了一套实用的方法论,旨在帮助开发者构建能够应对高并发请求且易于扩展的Web服务。内容涵盖了服务器架构、数据库管理、缓存策略以及异步处理等多个方面。 ... [详细]
  • RabbitMQ 核心组件解析
    本文详细介绍了RabbitMQ的核心概念,包括其基本原理、应用场景及关键组件,如消息、生产者、消费者、信道、交换机、路由键和虚拟主机等。 ... [详细]
author-avatar
kuqu00
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有