springboot整合RabbitMq

RabbitMq是一种消息队列

什么是MQ

字面理解MQ即messgae queue,消息队列,是一种程序之间的通信方式;由sheng生产者写入消息并由消费者进行消费。

简单案例

springboot集成rabbitmq(linux 安装rabbitmq

pom

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

然后在application.properties中配置rabbitmq

地址、用户名、密码都是在安装rabbitmq时配置的

  • spring.rabbitmq.host=192.168.2.149
  • spring.rabbitmq.port=5672
  • spring.rabbitmq.username=admin
  • spring.rabbitmq.password=admin

配置queue

  • package com.stu.demo.rabbitmq;
  • import org.springframework.amqp.core.Queue;
  • import org.springframework.context.annotation.Bean;
  • import org.springframework.context.annotation.Configuration;

 

 

/**

* rabbitMq配置文件

*

* @author jushangzhi@novacloud.com

* @create 2018-06-11 22:16

* @description

**/

  • @Configuration
  • public class rebbitmqConfig {
  •  
  • @Bean
  • public Queue queueForOne() {
  • return new Queue("rabbit_test_one");
  • }
  •  
  • }

 

 

发送消息

使用springboot默认的交换机

  • package com.stu.demo.rabbitmq;
  •  
  • import org.springframework.amqp.core.AmqpTemplate;
  • import org.springframework.beans.factory.annotation.Autowired;
  • import org.springframework.context.annotation.Configuration;
  •  
  • /**
  • * 消息生产者
  • *
  • * @author jushangzhi@novacloud.com
  • * @create 2018-06-11 22:19
  • * @description
  • **/
  • @Configuration
  • public class rabbitmqSender {
  •  
  • @Autowired
  • private AmqpTemplate template;
  •  
  • public void send(){
  • String messgae = "hello rabbit";
  • this.template.convertAndSend("rabbit_test_one",messgae);
  • }
  • }

接受消息

  • package com.stu.demo.rabbitmq;
  • import org.slf4j.Logger;
  • import org.slf4j.LoggerFactory;
  • import org.springframework.context.annotation.Configuration;
  •  
  • /**
  • * @author jushangzhi@novacloud.com
  • * @create 2018-06-11 22:21
  • * @description
  • **/
  • @Configuration
  • public class rabbitmqReceiver {
  •  
  • private Logger logger = LoggerFactory.getLogger(rabbitmqReceiver.class);
  • public void getMessage(String msg){
  • logger.info(msg);
  •  
  • }
  • }

测试一下

使用swagger2 作为接口api文档,使用swagger

  • package com.stu.demo.rabbitmq;
  • import io.swagger.annotations.ApiImplicitParam;
  • import io.swagger.annotations.ApiOperation;
  • import org.springframework.beans.factory.annotation.Autowired;
  • import org.springframework.web.bind.annotation.PathVariable;
  • import org.springframework.web.bind.annotation.RequestMapping;
  • import org.springframework.web.bind.annotation.RequestMethod;
  • import org.springframework.web.bind.annotation.RestController;
  •  
  • /**
  • * @author jushangzhi@novacloud.com
  • * @create 2018-06-12 21:11
  • * @description
  • **/
  • @RestController
  • public class rabbitController {
  •  
  • @Autowired
  • private rabbitmqSender rabbitmqSender;
  •  
  • @ApiOperation(value="获取用户详细信息", notes="根据url的id来获取用户详细信息")
  • @ApiImplicitParam(name = "msg", value = "rabbitMq信息", required = true, dataType = "String", paramType = "path")
  • @RequestMapping(value = "/sendMqMsg/{msg}", method = RequestMethod.GET)
  • public void sendMqMsg(@PathVariable(value = "msg") String msg){
  • rabbitmqSender.send(msg);
  • }
  • }

 

 

Spring Boot框架可以很容易地与RabbitMQ进行集成。为了实现这个目标,你需要在项目的依赖项中添加两个关键的依赖项。首先,你需要添加spring-boot-starter-amqp依赖项,它提供了与RabbitMQ进行通信的必要类和方法。其次,你还需要添加spring-boot-starter-web依赖项,以便在项目中使用Web功能。 在你的项目中创建两个Spring Boot应用程序,一个是RabbitMQ的生产者,另一个是消费者。通过这两个应用程序,你可以实现消息的发送和接收。生产者应用程序负责将消息发送到RabbitMQ消息队列,而消费者应用程序则负责从队列中接收并处理消息。这样,你就可以实现基于RabbitMQ的消息传递系统。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [SpringBoot整合RabbitMQ](https://blog.youkuaiyun.com/K_kzj_K/article/details/106642250)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] - *2* [Springboot 整合RabbitMq ,用心看完这一篇就够了](https://blog.youkuaiyun.com/qq_35387940/article/details/100514134)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] - *3* [undefined](undefined)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值