Spring Boot整合RabbitMQ开发实战详解
这篇文章主要讲基本的整合。先把代码跑起来,再说什么高级特性。
rabbitmq 中的一些术语
如果你打开 rabbitmq web 控制台,你会发现其中有一个 exhanges 不好理解。下面简单说明一下。
交换器(exchange)
交换器就像路由器,我们先是把消息发到交换器,然后交换器再根据路由键(routingkey)把消息投递到对应的队列。(明白这个概念很重要,后面的代码里面充分体现了这一点)
队列(queue)
队列很好理解,就不用解释了。
绑定(binding)
交换器怎么知道把这条消息投递到哪个队列呢?这就需要用到绑定了。大概就是:使用某个路由键(routingkey)把某个队列(queue)绑定到某个交换器(exchange),这样交换器就知道根据路由键把这条消息投递到哪个队列了。(后面的代码里面充分体现了这一点)
加入 rabbitmq maven 依赖
<dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-amqp</artifactid> </dependency>
再加入另外一个依赖(这个依赖可省略,主要是用来简化代码)
<dependency> <groupid>cn.hutool</groupid> <artifactid>hutool-all</artifactid> <version>4.0.2</version> </dependency>
rabbitmqconfig.java 配置
@configuration public class rabbitmqconfig { public final static string queue_name = "spring-boot-queue"; public final static string exchange_name = "spring-boot-exchange"; public final static string routing_key = "spring-boot-key"; // 创建队列 @bean public queue queue() { return new queue(queue_name); } // 创建一个 topic 类型的交换器 @bean public topicexchange exchange() { return new topicexchange(exchange_name); } // 使用路由键(routingkey)把队列(queue)绑定到交换器(exchange) @bean public binding binding(queue queue, topicexchange exchange) { return bindingbuilder.bind(queue).to(exchange).with(routing_key); } @bean public connectionfactory connectionfactory() { cachingconnectionfactory connectionfactory = new cachingconnectionfactory("127.0.0.1", 5672); connectionfactory.setusername("guest"); connectionfactory.setpassword("guest"); return connectionfactory; } @bean public rabbittemplate rabbittemplate(connectionfactory connectionfactory) { return new rabbittemplate(connectionfactory); } }
生产者
直接调用 rabbittemplate 的 convertandsend 方法就可以了。从下面的代码里也可以看出,我们不是把消息直接发送到队列里面的,而是先发送到了交换器,交换器再根据路由键把我们的消息投递到对应的队列。
@restcontroller public class producercontroller { @autowired private rabbittemplate rabbittemplate; @getmapping("/sendmessage") public object sendmessage() { new thread(() -> { for (int i = 0; i < 100; i++) { string value = new datetime().tostring("yyyy-mm-dd hh:mm:ss"); console.log("send message {}", value); rabbittemplate.convertandsend(rabbitmqconfig.exchange_name, rabbitmqconfig.routing_key, value); } }).start(); return "ok"; } }
消费者
消费者也很简单,只需要对应的方法上加入 @rabbitlistener 注解,指定需要监听的队列名称即可。
@component public class consumer { @rabbitlistener(queues = rabbitmqconfig.queue_name) public void consumemessage(string message) { console.log("consume message {}", message); } }
运行项目
运行项目,然后打开浏览器,输入 http://localhost:9999/sendmessage
。在控制台就可以看到生产者在不停的的发送消息,消费者不断的在消费消息。
打开 rabbitmq web 控制台,也可以看到刚才我们在代码里面配置的交换器和队列,以及绑定信息。
点击进入交换器的详情
结语
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 史上最全APP推广渠道
下一篇: 佳禾智能:加强技术创新深耕智能电声领域
推荐阅读
-
spring boot中使用RabbitMQ routing路由详解
-
Spring Boot整合RabbitMQ开发实战详解
-
Spring Boot2.X整合消息中间件RabbitMQ原理简浅探析
-
详解Spring Boot配置使用Logback进行日志记录的实战
-
详解Spring Boot实战之Filter实现使用JWT进行接口认证
-
详解spring boot jpa整合QueryDSL来简化复杂操作
-
详解Spring Boot实战之单元测试
-
spring boot中使用RabbitMQ routing路由详解
-
Spring Boot整合RabbitMQ开发实战详解
-
spring Boot与Mybatis整合优化详解