java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Spring Boot生产消息和消费消息

Spring Boot中使用RabbitMQ 生产消息和消费消息的实例代码

作者:令人作呕的溏心蛋

本文介绍了在SpringBoot中如何使用RabbitMQ进行消息的生产和消费,详细阐述了RabbitMQ中交换机的作用和类型,包括直连交换机、主题交换机、扇出交换机和头交换机,并解释了各自的消息路由机制,感兴趣的朋友一起看看吧

引入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 {
    //========================================================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队列 -> 消费
    @RabbitListener(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.消息路由:

2.类型:

工作流程

在我的代码中生产消息语句:

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 BindingBuilder.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());
}
@Bean
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 Binding 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生产消息和消费消息内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文