SpringBoot 项目中集成RabbitMQ消息队列,发送消息,监听消息,延迟队列

本文详细介绍了如何在Spring Boot项目中集成RabbitMQ,包括添加依赖、配置Spring和RabbitMqConfig,实现消息发送和消费者监听。通过实例展示了如何使用fanout exchange、队列绑定以及延迟队列功能。
摘要由CSDN通过智能技术生成

1.添加依赖包

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-amqp</artifactId>
</dependency>

2.spring配置文件

spring:
  rabbitmq:
    addresses: 
    port: 5672
    username: admin
    password: admin
     #虚拟host 可以不设置,使用server默认host
    virtual-host: /user

 

3.RabbitMqConfig 配置文件

@Configuration
public class RabbitMqConfig {
    /**
     * 交换机
     */
    public static final String MIDDLE_USER_EXCHANGE = "user_exchange";

    /**
     * 活动中心
     */
    public static final String USER_ACTIVITY_NOTIFY = "user_register_activity_queue";

    /**
     * 用户交换机
     *
     * @return
     */
    @Bean
    public FanoutExchange userFanoutExchange() {
        return new FanoutExchange(MIDDLE_USER_EXCHANGE, true, false);
    }


    /**
     * 活动中心消费队列
     *
     * @return
     */
    @Bean
    public Queue userActivityQueue() {
        return new Queue(USER_ACTIVITY_NOTIFY, true);
    }


    /**
     * 活动中心绑定交换器
     *
     * @return
     */
    @Bean
    public Binding userActivityQueueBinding() {
        return BindingBuilder.bind(userActivityQueue()).to(userFanoutExchange());
    }
}

4.发送消息

Map map = new HashMap<String, Object>();

map.put("orderId", questionOrderRecordVO.getOrderId());


rabbitTemplate.convertAndSend(RabbitMqConfig.MIDDLE_USER_EXCHANGE, null, map);

 

5. 监听消息队列

@RabbitListener(bindings = {@QueueBinding(
        value = @Queue(value = USER_ACTIVITY_NOTIFY , durable = "true"),
        exchange = @Exchange(value = MIDDLE_USER_EXCHANGE, type = ExchangeTypes.FANOUT))})
public void receiveUserRegister(@Payload String msg, Channel channel, @Header(AmqpHeaders.DELIVERY_TAG) long deliveryTag) throws IOException {
    JSONObject json = JSONObject.parseObject(msg);
    if (!"register".equals(json.getString("type"))) return;
    log.info("监听到用户注册消息:{}", msg);
    try {

    } catch (Exception e) {
        log.error("消费用户信息出错:{}", e.getMessage());
    } finally {
        log.info("========ack========");
        //ack
        channel.basicAck(deliveryTag, false);
    }
}

 

6.发送延迟队列

Map map = new HashMap<String, Object>();

map.put("orderId", questionOrderRecordVO.getOrderId());

rabbitTemplate.convertAndSend(RabbitMqConfig.MIDDLE_USER_EXCHANGE, null, map, message -> {
//延迟一分钟
    message.getMessageProperties().setExpiration(1000 * 60 * 1 + "");
    return message;
});

 

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值