1-8 (2). SpringBoot整合RabbitMQ-消费者

SpringBoot整合RabbitMQ-消费者
主要流程是:
1.创建Springboot工程
2.依赖引入
3.编写yml配置
4.编写监听类,使用@RabbitListener完成队列监听

1.略

2.依赖引入

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

3.yml配置

# 配置RabbitMQ的基本信息
spring:
  rabbitmq:
    host: 127.0.0.1
    port: 5672
    username: guest
    password: guest
    virtual-host: /

4.编写监听类

package cn.sysu.listener;

import org.springframework.amqp.core.Message;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;

@Component
public class RabbitMQListener {

    public static final String QUEUE_NAME1 = "ming-queue1";
    public static final String QUEUE_NAME2 = "ming-queue2";

    @RabbitListener(queues = QUEUE_NAME1)
    public void getMessageFromQueue1(Message message){
        System.out.println(message);
        System.out.println(new String(message.getBody()));
    }

    @RabbitListener(queues = QUEUE_NAME2)
    public void getMessageFromQueue2(Message message){
        System.out.println(message);
        System.out.println(new String(message.getBody()));
    }
}

启动Springboot,监听队列
在这里插入图片描述
接受消息成功

博主的坚持 离不开大家评论和点赞,感谢大家支持!!!

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值