欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

消息队列 RabbitMQ 与 Spring 整合使用的实例代码

程序员文章站 2024-02-15 20:30:22
一、什么是 rabbitmq rabbitmq 是实现 amqp(高级消息队列协议)的消息中间件的一种,最初起源于金融系统,用于在分布式系统中存储转发消息,在易用性、扩展...

一、什么是 rabbitmq

rabbitmq 是实现 amqp(高级消息队列协议)的消息中间件的一种,最初起源于金融系统,用于在分布式系统中存储转发消息,在易用性、扩展性、高可用性等方面表现不俗。消息中间件主要用于组件之间的解耦,消息的发送者无需知道消息使用者的存在,反之亦然。

rabbitmq 是由 erlang 语言开发,安装 rabbitmq 服务需要先安装 erlang 语言包。

二、如何与 spring 集成

1. 我们都需要哪些 jar 包?

抛开单独使用 spring 的包不说,引入 rabbitmq 我们还需要两个:

<!-- rabbitmq -->
<dependency>
 <groupid>com.rabbitmq</groupid>
 <artifactid>amqp-client</artifactid>
 <version>3.5.1</version>
</dependency>
<dependency>
 <groupid>org.springframework.amqp</groupid>
 <artifactid>spring-rabbit</artifactid>
 <version>1.4.5.release</version>
</dependency>

2. 使用外部参数文件 application.properties:

mq.host=127.0.0.1
mq.username=queue
mq.password=1234
mq.port=8001
# 统一xml配置中易变部分的命名
mq.queue=test_mq

易变指的是在实际项目中,如果测试与生产环境使用的同一个 rabbitmq 服务器。那我们在部署时直接修改 properties 文件的参数即可,防止测试与生产环境混淆。

 修改 applicationcontext.xml 文件,引入我们创建的 properties 文件

<context:property-placeholder location="classpath:application.properties"/>
<util:properties id="appconfig" location="classpath:application.properties"></util:properties>

3. 连接 rabbitmq 服务器

<!-- 连接配置 -->
<rabbit:connection-factory id="connectionfactory" host="${mq.host}" username="${mq.username}"
  password="${mq.password}" port="${mq.port}" />
  
<rabbit:admin connection-factory="connectionfactory"/>

4. 声明一个 rabbitmq template

复制代码 代码如下:

<rabbit:template id="amqptemplate" exchange="${mq.queue}_exchange" connection-factory="connectionfactory"  />

5. 在 applicationcontext.xml 中声明一个交换机,name 属性需配置到 rabbitmq 服务器。

<rabbit:topic-exchange name="${mq.queue}_exchange" durable="true" auto-delete="false">
 <rabbit:bindings>
  <rabbit:binding queue="test_queue" pattern="${mq.queue}_patt"/>
 </rabbit:bindings>
</rabbit:topic-exchange>

交换机的四种模式:

  • direct:转发消息到 routigkey 指定的队列。
  • topic:按规则转发消息(最灵活)。
  • headers:(这个还没有接触到)
  • fanout:转发消息到所有绑定队列

交换器的属性:

  • 持久性:如果启用,交换器将会在server重启前都有效。
  • 自动删除:如果启用,那么交换器将会在其绑定的队列都被删除掉之后自动删除掉自身。
  • 惰性:如果没有声明交换器,那么在执行到使用的时候会导致异常,并不会主动声明。

如果没有队列绑定在交换机上,则发送到该交换机上的消息会丢失。

一个交换机可以绑定多个队列,一个队列可以被多个交换机绑定。

topic 类型交换器通过模式匹配分析消息的 routing-key 属性。它将 routing-key 和 binding-key 的字符串切分成单词。这些单词之间用点隔开。它同样也会识别两个通配符:#匹配0个或者多个单词,*匹配一个单词。例如,binding key:*.stock.#匹配 routing key:usd.stcok 和 eur.stock.db,但是不匹配 stock.nana。

因为交换器是命名实体,声明一个已经存在的交换器,但是试图赋予不同类型是会导致错误。客户端需要删除这个已经存在的交换器,然后重新声明并且赋予新的类型。

6. 在 applicationcontext.xml 中声明一个队列,name 属性是需要配置到 rabbitmq 服务器的。

复制代码 代码如下:

<rabbit:queue id="test_queue" name="${mq.queue}_testqueue" durable="true" auto-delete="false" exclusive="false" />

  • durable:是否持久化
  • exclusive:仅创建者可以使用的私有队列,断开后自动删除
  • auto-delete:当所有消费端连接断开后,是否自动删除队列

7. 创建生产者端

import org.springframework.amqp.core.amqptemplate;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.stereotype.service;

/**
 * @description: 消息队列发送者
 * @author: 
 * @createtime: 
 */
@service
public class producer {

 @autowired
 private amqptemplate amqptemplate;
 
 public void sendqueue(string exchange_key, string queue_key, object object) {
  // convertandsend 将java对象转换为消息发送至匹配key的交换机中exchange
  amqptemplate.convertandsend(exchange_key, queue_key, object);
 }
}

8. 在 applicationcontext.xml 中配置监听及消费者端 

<!-- 消费者 -->
<bean name="rabbitmqservice" class="com.enh.mq.rabbitmqservice"></bean>
 
<!-- 配置监听 -->
<rabbit:listener-container connection-factory="connectionfactory" acknowledge="auto">
  <!-- 
    queues 监听队列,多个用逗号分隔 
    ref 监听器
  -->
  <rabbit:listener queues="test_queue" ref="rabbitmqservice"/>
</rabbit:listener-container>

消费者 java 代码:

import org.springframework.amqp.core.message;
import org.springframework.amqp.core.messagelistener;

public class rabbitmqservice implements messagelistener {
 public void onmessage(message message) {
  system.out.println("消息消费者 = " + message.tostring());
 }
}

至此,我们的所有配置文件就写完了,最终如下:

<?xml version="1.0" encoding="utf-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
  xmlns:context="http://www.springframework.org/schema/context"
  xmlns:util="http://www.springframework.org/schema/util"
  xmlns:aop="http://www.springframework.org/schema/aop"
  xmlns:tx="http://www.springframework.org/schema/tx"
  xmlns:rabbit="http://www.springframework.org/schema/rabbit"
  xmlns:p="http://www.springframework.org/schema/p"
  xsi:schemalocation="
  http://www.springframework.org/schema/context
  http://www.springframework.org/schema/context/spring-context-3.0.xsd
  http://www.springframework.org/schema/beans
  http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  http://www.springframework.org/schema/util
  http://www.springframework.org/schema/util/spring-util-3.0.xsd
  http://www.springframework.org/schema/aop
  http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
  http://www.springframework.org/schema/tx
  http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
  http://www.springframework.org/schema/rabbit
  http://www.springframework.org/schema/rabbit/spring-rabbit-1.0.xsd">
  
  
  
 <!-- rabbitmq start -->
 
 <!-- 连接配置 -->
 <rabbit:connection-factory id="connectionfactory" host="${mq.host}" username="${mq.username}"
  password="${mq.password}" port="${mq.port}" />
  
 <rabbit:admin connection-factory="connectionfactory"/>
 
 <!-- 消息队列客户端 -->
 <rabbit:template id="amqptemplate" exchange="${mq.queue}_exchange" connection-factory="connectionfactory" />
 
 <!-- queue 队列声明 -->
 <!-- 
  durable 是否持久化 
  exclusive 仅创建者可以使用的私有队列,断开后自动删除 
  auto-delete 当所有消费端连接断开后,是否自动删除队列 -->
 <rabbit:queue id="test_queue" name="${mq.queue}_testqueue" durable="true" auto-delete="false" exclusive="false" />
 
 <!-- 交换机定义 -->
 <!-- 
  交换机:一个交换机可以绑定多个队列,一个队列也可以绑定到多个交换机上。
  如果没有队列绑定到交换机上,则发送到该交换机上的信息则会丢失。
  
  direct模式:消息与一个特定的路由器完全匹配,才会转发
  topic模式:按规则转发消息,最灵活
  -->
 <rabbit:topic-exchange name="${mq.queue}_exchange" durable="true" auto-delete="false">
  <rabbit:bindings>
   <!-- 设置消息queue匹配的pattern (direct模式为key) -->
   <rabbit:binding queue="test_queue" pattern="${mq.queue}_patt"/>
  </rabbit:bindings>
 </rabbit:topic-exchange>
 
 <bean name="rabbitmqservice" class="com.enh.mq.rabbitmqservice"></bean>
 
 <!-- 配置监听 消费者 -->
 <rabbit:listener-container connection-factory="connectionfactory" acknowledge="auto">
  <!-- 
   queues 监听队列,多个用逗号分隔 
   ref 监听器 -->
  <rabbit:listener queues="test_queue" ref="rabbitmqservice"/>
 </rabbit:listener-container>
</beans>

9. 如何使用 rabbitmq 发送一个消息

  @autowired
 private producer producer;
 @value("#{appconfig['mq.queue']}")
 private string queueid;
 
 /**
  * @description: 消息队列
  * @author: 
  * @createtime: 
  */
 @responsebody
 @requestmapping("/sendqueue")
 public string testqueue() {
  try {
   map<string, object> map = new hashmap<string, object>();
   map.put("data", "hello rabbitmq");
   producer.sendqueue(queueid + "_exchange", queueid + "_patt", map);
  } catch (exception e) {
   e.printstacktrace();
  }
  return "发送完毕";
 }

嗯。这个测试是 springmvc 框架。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。