博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringBoot 配置rabbitmq
阅读量:4982 次
发布时间:2019-06-12

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

一、添加pom文件依赖

org.springframework.boot
spring-boot-starter-amqp

二、在.yml配置文件中对mq进行配置,如下所示

1 mq:2   rabbit:3     host: 192.168.10.70(换成自己的ip)4     port: 56725     virtualHost: /6     username: 用户名7     password: 密码

三、相对用的配置类,具体的应用配置信息

1 package com.zthl.mall.mini.mq.config; 2  3 import com.rabbitmq.client.ConnectionFactory; 4 import org.springframework.amqp.core.Queue; 5 import org.springframework.amqp.rabbit.connection.CachingConnectionFactory; 6 import org.springframework.beans.factory.annotation.Value; 7 import org.springframework.context.annotation.Bean; 8 import org.springframework.context.annotation.Configuration; 9 import org.springframework.stereotype.Component;10 11 /**12  * Created by qiuzhijie.13  * Date: 2019-01-0714  * 备注: mq config information15  */16 @Configuration17 public class RabbitMQConfig {18 19     @Value("${mq.rabbit.host}")20     private String HOST;21     @Value("${mq.rabbit.port}")22     private Integer PORT;23     @Value("${mq.rabbit.virtualHost}")24     private String VIRTUALHOST;25     @Value("${mq.rabbit.username}")26     private String USERNAME;27     @Value("${mq.rabbit.password}")28     private String PASSWORD;29 30     @Bean31     public CachingConnectionFactory connectionFactory() {32         CachingConnectionFactory connectionFactory = new CachingConnectionFactory(this.HOST,this.PORT);33 34         connectionFactory.setUsername(this.USERNAME);35         connectionFactory.setPassword(this.PASSWORD);36         connectionFactory.setVirtualHost(this.VIRTUALHOST);37 38         return connectionFactory;39     }40     @Bean41     public Queue queue() {42         return new Queue("mall.paied.order",true);43     }44 45 }

四、springboot默认给实现了AmqpTemplate,所以这里直接注入使用来发消息,这里简单使用测试一下,根据场景使用不同的模式,这里只做与一下最简单的demo

1 package com.zthl.mall.mini.mq.controller; 2  3  4 import org.springframework.amqp.core.AmqpTemplate; 5 import org.springframework.beans.factory.annotation.Autowired; 6 import org.springframework.stereotype.Component; 7  8  9 /**10  * Created by qiuzhijie.11  * Date: 2019-01-0712  * 备注:13  */14 @Component15 public class MqSender {16 17     @Autowired18     private AmqpTemplate rabbitTemplate;19 20     public void send()throws Exception{21 22         rabbitTemplate.convertAndSend("mall.paied.order","hello,rabbit-");23         System.out.println("Sender:"+"rabbit-");24     }25 }

五、测试发送消息

package com.zthl.mall.mini.mq.test;import com.zthl.mall.mini.CloudHallMallMiniApplication;import com.zthl.mall.mini.mq.controller.MqSender;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;/** * Created by qiuzhijie. * Date: 2019-01-07 * 备注: */@RestController@RequestMapping(value = "/api/mq")public class TestRabbitMQ {    @Autowired    private MqSender mqSender;    @RequestMapping("/send")    public void testRabbit() throws Exception {        mqSender.send();    }}

六、是否发送成功可以在网页查看Messages,成功的情况下,Ready与Total对应的数量变化

 

转载于:https://www.cnblogs.com/jie412/p/10238864.html

你可能感兴趣的文章
优先队列详解
查看>>
VS2012 创建项目失败,,提示为找到约束。。。。
查看>>
设计类图
查看>>
类对象
查看>>
[Voice communications] 声音的滤波
查看>>
软件建模——第9章 毕业论文管理系统—面向对象方法
查看>>
[SDOI2008]洞穴勘测
查看>>
IDEA使用操作文档
查看>>
看完漫画秒懂区块链
查看>>
iOS 电话在后台运行时,我的启动图片被压缩
查看>>
js --基本语法3 函数,数组,堆棧
查看>>
LeetCode: Reverse Nodes in k-Group
查看>>
06_zookeeper_原生API使用2
查看>>
javascript --- 继承初探七日谈 (一)
查看>>
排序算法一:插入排序(Insertion sort)
查看>>
线段树做题总结
查看>>
JAVA基于File的基本的增删改查
查看>>
RocketMQ安装与实例
查看>>
PHP知识库图谱汇总(完善中)
查看>>
大道至简阅读笔记07
查看>>