目录
- 引入RabbitMQ依赖
- 增加RabbitMQ配置
- 配置RabbitMQ交换机以及队列
- 编写接口,模拟生产消息
- 编写消息监听类,模拟消费消息
- RabbitMQ 中的交换机的作用
- 四种交换机模式
- 1. 直连交换机(Direct Exchange)
- 2. 主题交换机(Topic Exchange)
- 3. 扇出交换机(Fanout Exchange)
- 4. 头交换机(Headers Exchange)
引入RabbitMQ依赖
<!-- springboot集成rabbitMQ --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> </dependency>
增加RabbitMQ配置
#rabbitmq配置 spring: rabbitmq: host: ip地址 port: 5672 username: 账号 password: 密码 virtual-host: /
配置RabbitMQ交换机以及队列
package com.ckm.ball.config; import org.springframework.amqp.core.Binding; import org.springframework.amqp.core.BindingBuilder; import org.springframework.amqp.core.FanoutExchange; import org.springframework.amqp.core.Queue; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; //rabbitMQ绑定交换机 / 队列 @Configuration public class RabbitMQConfig { //=============================http://www.devze.com===========================RabbitMQ Queue========================================================// //创建fanout模式交换机 @Bean public FanoutExchange fanoutExchangeProcess() { return new FanoutExchange("process-data-change-exchange", true, false); } //创建队列 @Bean public Queue processDataChangeQueue() { return new Queue("process-data-change-queue", true); } //将队列绑定到交换机 @Bean public Binding chatBindExchange() { return BindingBuilder.bind(processDataChangeQueue()).to(fanoutExchangeProcess()); } }
编写接口,模拟生产消息
@Resource private RabbitTemplate rabbitTemplate; @GetMapping("/produceMessage") @ApiOperation(value = "生产消息", tags = "测试接口") public void updateTokenTime() { //生产消息,会到交换机,交换机下发给队列,队列监听到就会消费,执行业务逻辑 rabbitTemplate.convertAndSend("process-data-change-exchange", "process-data-change-queue", "hhhhhhhhhhhhhh"); }
编写消息监听类,模拟消费消息
package com.ckm.ball.config; import lombok.extern.slf4j.Slf4j; import org.springframework.amqp.rabbit.annotation.RabbitListener; import org.springframework.messaging.handler.annotation.Payload; import org.springframework.stereotype.Component; import Java.util.Date; @Slf4j @Component public class RabbitMQDataSyncListenerProcess { //监听process-data-change-queue队列 -> 消费 @RabbitListenerphp(queues = "process-data-change-queue") public void orderDead(@Payload String productIdAndOrderId) { log.info("当前时间:{},收到队列信息:{}", new Date().toString(), productIdAndOrderId); //执行你的业务逻辑 for (int i = 0; i < 5; i++) { System.out.println("循环次数: " + (i + 1)); try { // 暂停 2000 毫秒(2 秒) Thread.sleep(2000); } catch (InterruptedException e) { // 处理异常 System.err.println("线程被中断: " + e.getMessage()); } } } }
RabbitMQ 中的交换机的作用
RabbitMQ 中的交换机(Exchange)是消息路由的核心组件。它负责接收来自生产者发送的消息,并根据特定的路由规则将这些消息传递给一个或多个队列(Queue)。
交换机的主要功能和类型
1.消息路由:
- 交换机决定消息应该发送到哪些队列,基于绑定(Binding)和路由键(Routing Key)。
2.类型:
- 直连交换机(Direct Exchange):消息直接发送到与路由键精确匹配的队列。
- 主题交换机(Topic Exchange):消息根据路由键模式匹配一个或多个队列,支持通配符。
- 扇出交换机(Fanout Exchange):将消息广播到所有绑定的队列,不考虑路由键。
- 头交换机(Headers Exchange):通过消息的属性(Headers)进行路由,而不是使用路由键。
工作流程
- 生产者发送消息到交换机。
- 交换机根据配置的路由规则和队列的绑定关系,将消息路由到相应的队列。
- 消费者从队列中获取消息进行处理。
在我的代码中生产消息语句:
convertAndSend(交换机,路由键也就是队列,你想传递的参数)
在扇出交换机(Fanout Exchange)模式不需要指定路由键,因为指定了也没用。
rabbitTemplate.convertAndSend("process-data-change-exchange", "process-data-change-queue", "hhhhhhhhhhhhhh");
在扇出交换机(Fanout Exchange)模式,应改成:
rabbitTemplate.convertAndSend("process-data-change-exchange", "", "hhhhhhhhhhhhhh");
在扇出交换机中,可以将路由键设置为空字符串 “”,因为扇出交换机会将消息发送到所有绑定的队列,而不需要考虑路由键的具体值。
- 在扇出交换机中,路由键被忽略。
- 消息会被广播到所有与交换机绑定的队列中。
四种交换机模式
1. 直连交换机(Direct Exchange)
直连交换机:发送到匹配路由键的队列。
// 创建直连交换机 @Bean public DirectExchange directExchange() { return new DirectExchange("direct-exchange", true, false); } // 创建队列 @Bean public Queue directQueue() { return new Queue("direct-queue", true); } // 将队列绑定到直连交换机,同时指定路由键 @Bean public Binding directBinding() { return BindingBuilderpython.bind(directQueue()).to(directExchange()).with("direct-routing-key"); }
生产消息:
直连交换机生产消息:需要指定路由键。
// 发送消息到直连交换机 rabbitTemplate.convertAndSend("direct-exchange", "direct-routing-key", "Your message here");
2. 主题交换机(Topic Exchange)
主题交换机:支持模糊匹配路由键。
// 创建主题交换机 @Bean public TopicExchange topicExchange() { return new TopicExchange("topic-exchange", true, false); } // 创建队列 @Bean public Queue topicQueue() { return new Queue("topic-queue", true); } // 将队列绑定到主题交换机,同时指定路由键 @Bean public Binding topicBinding() { return BindingBuilder.bind(topicQueue()).to(topicExchange()).with("topic.#"); }
生产消息:
主题交换机生产消息:需要指定符合主题模式的路由键。
// 发送消息到主题交换机 rabbitTemplate.convertAndSend("topic-exchange", "topic.routing.key", "Your message here");
3. 扇出交换机(Fanout Exchange)
扇出交换机:将消息广播到所有绑定的队列。
// 创建扇出交换机 @Bean public FanoutExchange fanoutExchange() { return new FanoutExchange("fanout-exchange", true, false); } // 创建队列 @Bean public Queue fanoutQueue1() { return new Queue("fanout-queue-1", true); } @Bean public Queue fanoutQueue2() { return new Queue("fanout-queue-2", true); } // 将队列绑定到扇出交换机 @Bean public Binding fanoutBinding1() { return BindingBuilder.bind(fanoutQueue1()).to(fanoutExchange()); } @BtfdXAThbean public Binding fanoutBinding2() { return BindingBuilder.bind(fanoutQueue2()).to(fanoutExchange()); }
生产消息:
扇出交换机生产消息:不需要路由键,使用空字符串即可。
// 发送消息到扇出交换机 rabbitTemplate.convertAndSend("fanout-exchange", "", "Your message here");
4. 头交换机(Headers Exchange)
头交换机:根据消息头中匹配的属性进行路由。
// 创建头交换机 @Bean public HeadersExchange headersExchange() { return new HeadersExchange("headers-exchange", true, false); } // 创建队列 @Bean public Queue headersQueue() { return new Queue("headers-queue", true); } // 将队列绑定到头交换机,同时指定头属性 @Bean public Bindingphp headersBinding() { Map<String, Object> headers = new HashMap<>(); headers.put("format", "pdf"); headers.put("type", "report"); return BindingBuilder.bind(headersQueue()) .to(headersExchange()) .whereAll(headers) .match(); }
生产消息:
头交换机生产消息:需要构建一个带有头属性的消息。
// 发送消息到头交换机 MessageProperties messageProperties = new MessageProperties(); messageProperties.setHeader("format", "pdf"); messageProperties.setHeader("type", "report"); Message message = new Message("Your message here".getBytes(), messageProperties); rabbitTemplate.send("headers-exchange", "", message);
到此这篇关于Spring Boot中使用RabbitMQ 生产消息和消费消息的文章就介绍到这了,更多相关Spring Boot生产消息和消费消息内容请搜索编程客栈(www.devze.com)以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程客栈(www.devze.com)!
精彩评论