RabbitMQ---Spring AMQP

Spring AMQP

1. 简介

Spring有很多不同的项目,其中就有对AMQP的支持:

Spring AMQP的页面:http://spring.io/projects/spring-amqp

注意这里一段描述:

Spring-amqp是对AMQP协议的抽象实现,而spring-rabbit 是对协议的具体实现,也是目前的唯一实现。底层使用的就是RabbitMQ。

2. 依赖和配置

添加AMQP的启动器:

java 复制代码
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-amqp</artifactId>
</dependency>

在application.yml中添加RabbitMQ地址:

java 复制代码
spring:
  rabbitmq:
    host: 192.168.137.137
    username: zhangsan
    password: 123456
    virtual-host: /shopping
    port: 5672

3. 监听者

在SpringAmqp中,对消息的消费者进行了封装和抽象,一个普通的JavaBean中的普通方法,只要通过简单的注解,就可以成为一个消费者。

java 复制代码
@Component
public class Listener {
   @RabbitListener(bindings = @QueueBinding(
           value = @Queue(value = "spring.test.queue", durable = "true"),
           exchange = @Exchange(
                   value = "spring.test.exchange",
                   ignoreDeclarationExceptions = "true",
                   type = ExchangeTypes.TOPIC
           ),
           key = {"#.#"}))
   public void listen(String msg){
       System.out.println("接收到消息:" + msg);
   }
}

• @Componet:类上的注解,注册到Spring容器

• @RabbitListener:方法上的注解,声明这个方法是一个消费者方法,需要指定下面的属性:

o bindings:指定绑定关系,可以有多个。值是@QueueBinding的数组。@QueueBinding包含下面属性:

o value:这个消费者关联的队列。值是@Queue,代表一个队列

o exchange:队列所绑定的交换机,值是@Exchange类型

o key:队列和交换机绑定的RoutingKey

类似listen这样的方法在一个类中可以写多个,就代表多个消费者。

4. AmqpTemplate

Spring最擅长的事情就是封装,把他人的框架进行封装和整合。

Spring为AMQP提供了统一的消息处理模板:AmqpTemplate,非常方便的发送消息,其发送方法:

红框圈起来的是比较常用的3个方法,分别是:

o 指定消息

o 指定RoutingKey和消息,会向默认的交换机发送消息

o 指定交换机、RoutingKey和消息体

5. 测试代码

java 复制代码
@RunWith(SpringRunner.class)
@SpringBootTest(classes = Application.class)
public class MqDemo {
   @Autowired
   private AmqpTemplate amqpTemplate;
   @Test
   public void testSend() throws InterruptedException {
       String msg = "hello, Spring boot amqp";
       this.amqpTemplate.convertAndSend("spring.test.exchange","a.b", msg);
       // 等待10秒后再结束
       Thread.sleep(10000);
   }
}

运行后查看日志:

相关推荐
Q_192849990612 分钟前
基于Spring Boot的个人健康管理系统
java·spring boot·后端
liutaiyi812 分钟前
Redis可视化工具 RDM mac安装使用
redis·后端·macos
Q_192849990619 分钟前
基于Springcloud的智能社区服务系统
后端·spring·spring cloud
xiaocaibao77721 分钟前
Java语言的网络编程
开发语言·后端·golang
hanbarger1 小时前
分布式通信,微服务协调组件,zookeeper
分布式·zookeeper·中间件
会说法语的猪2 小时前
springboot实现图片上传、下载功能
java·spring boot·后端
凡人的AI工具箱2 小时前
每天40分玩转Django:实操多语言博客
人工智能·后端·python·django·sqlite
Cachel wood2 小时前
Django REST framework (DRF)中的api_view和APIView权限控制
javascript·vue.js·后端·python·ui·django·前端框架
m0_748234082 小时前
Spring Boot教程之三十一:入门 Web
前端·spring boot·后端
想成为高手4992 小时前
国产之光--仓颉编程语言的实战案例分析
后端