博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring Boot整合Rabbitmq
阅读量:5903 次
发布时间:2019-06-19

本文共 4414 字,大约阅读时间需要 14 分钟。

  Spring Boot应用中整合RabbitMQ,并实现一个简单的发送、接收消息的例子来对RabbitMQ有一个直观的感受和理解。

在Spring Boot中整合RabbitMQ是一件非常容易的事,因为之前我们已经介绍过Starter POMs,其中的AMQP模块就可以很好的支持RabbitMQ,下面我们就来详细说说整合过程:

  • 新建一个Spring Boot工程,命名为:“rabbitmq-hello”。
  • pom.xml中引入如下依赖内容,其中spring-boot-starter-amqp用于支持RabbitMQ。
4.0.0
com.dxz
rabbitmq-hello
0.0.1-SNAPSHOT
jar
rabbitmq-hello
http://maven.apache.org
UTF-8
org.springframework.boot
spring-boot-starter-parent
1.3.7.RELEASE
org.springframework.boot
spring-boot-starter-amqp
org.springframework.boot
spring-boot-starter-test
test
  • application.properties中配置关于RabbitMQ的连接和用户信息,用户可以回到上面的安装内容,在管理页面中创建用户。
spring.application.name=rabbitmq-hellospring.rabbitmq.host=localhostspring.rabbitmq.port=5672spring.rabbitmq.username=guestspring.rabbitmq.password=guest
  • 创建消息生产者Sender。通过注入AmqpTemplate接口的实例来实现消息的发送,AmqpTemplate接口定义了一套针对AMQP协议的基础操作。在Spring Boot中会根据配置来注入其具体实现。在该生产者,我们会产生一个字符串,并发送到名为hello的队列中。
package com.dxz.rabbitmq_hello;import java.util.Date;import org.springframework.amqp.core.AmqpTemplate;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Component;@Componentpublic class Sender {    @Autowired    private AmqpTemplate rabbitTemplate;    public void send() {        String context = "hello " + new Date();        System.out.println("---------------Sender : " + context);        this.rabbitTemplate.convertAndSend("hello", context);    }}
  • 创建消息消费者Receiver。通过@RabbitListener注解定义该类对hello队列的监听,并用@RabbitHandler注解来指定对消息的处理方法。所以,该消费者实现了对hello队列的消费,消费操作为输出消息的字符串内容。
package com.dxz.rabbitmq_hello;import org.springframework.amqp.rabbit.annotation.RabbitHandler;import org.springframework.amqp.rabbit.annotation.RabbitListener;import org.springframework.stereotype.Component;@Component@RabbitListener(queues = "hello")public class Receiver {    @RabbitHandler    public void process(String hello) {        System.out.println("Receiver : " + hello);    }}
  • 创建RabbitMQ的配置类RabbitConfig,用来配置队列、交换器、路由等高级信息。这里我们以入门为主,先以最小化的配置来定义,以完成一个基本的生产和消费过程。
package com.dxz.rabbitmq_hello;import org.springframework.amqp.core.Queue;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;@Configurationpublic class RabbitConfig {    @Bean    public Queue helloQueue() {        return new Queue("hello");    }}
  • 创建应用主类:
package com.dxz.rabbitmq_hello;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplicationpublic class HelloApplication {    public static void main(String[] args) {        SpringApplication.run(HelloApplication.class, args);    }}
  • 创建单元测试类,用来调用消息生产:
package com.dxz.rabbitmq_hello;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.SpringApplicationConfiguration;import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;@RunWith(SpringJUnit4ClassRunner.class)@SpringApplicationConfiguration(classes = HelloApplication.class)public class HelloApplicationTests {    @Autowired    private Sender sender;    @Test    public void hello() throws Exception {        sender.send();        sender.send();        sender.send();    }}

启动应用主类,从控制台中,我们看到如下内容,程序创建了一个访问127.0.0.1:5672springcloud的连接。完成程序编写之后,下面开始尝试运行。首先确保RabbitMQ Server已经开始,然后进行下面的操作:

1
o.s.a.r.c.CachingConnectionFactory : Created new connection: SimpleConnection@29836d32 [delegate=amqp://springcloud@127.0.0.1:5672/]

同时,我们通过RabbitMQ的控制面板,可以看到Connection和Channels中包含当前连接的条目。

  • 运行单元测试类,我们可以看到控制台中输出下面的内容,消息被发送到了RabbitMQ Server的hello队列中。

  • 切换到应用主类的控制台,我们可以看到类似如下输出,消费者对hello队列的监听程序执行了,并输出了接受到的消息信息。

通过上面的示例,我们在Spring Boot应用中引入spring-boot-starter-amqp模块,进行简单配置就完成了对RabbitMQ的消息生产和消费的开发内容。然而在实际应用中,我们还有很多内容没有演示,这里不做更多的讲解,读者可以自行查阅RabbitMQ的官方教程,有更全面的了解。

转载地址:http://rzkpx.baihongyu.com/

你可能感兴趣的文章
打油诗 看《大上海》
查看>>
2013年第4周三波动
查看>>
JavaScript之常用调试方法
查看>>
unzip多文件同时解压
查看>>
行为的抽象即是接口(Interface)
查看>>
VS2008驱动开发环境配置
查看>>
配置GoldenGate源端Manager参数
查看>>
hdu 4502
查看>>
黑马程序员-JAVA基础-StringBuffer 类 和StringBuilder 类
查看>>
INT最值
查看>>
微微博项目---全新的新浪微博客户端
查看>>
C# 温故知新 基础篇(1) C#概述
查看>>
Laruence谈:深入理解Javascript之this关键字
查看>>
Deep learning:二十八(使用BP算法思想求解Sparse coding中矩阵范数导数)
查看>>
详解公钥、私钥、数字证书的概念
查看>>
TCP协议栈的6类定时器
查看>>
FZU 2110 Star
查看>>
图片设置解决CSS下img图片多余空白或者是表格中有空隙Bug的方案
查看>>
关于gridview的数据 导出exelc
查看>>
日期设置linux命令学习之 date认识
查看>>