SpringBoot集成rabbitmq(一)
前言
rabbitmq是一个开源的消息代理软件,是amqp协议的实现。核心作用就是创建消息队列,异步发送和接收消息。通常用来在高并发中处理削峰填谷、延迟处理、解耦系统之间的强耦合、处理秒杀订单。 入门rabbitmq之前主要是想了解下秒杀排队订单入库后,异步通知客户端秒杀结果。
基础知识
1、基本概念(角色)
了解rabbitmq之前先要了解3个基本概念:生产者、消费者、代理(队列)。 rabbitmq在生产者和代理中间做了一层抽象。这样消息生产者和队列就没有直接联系,在中间加入了一层交换器(exchange)。这样消息生产者把消息交给交换器,交换器根据路由策略再把消息转发给对应队列。
2、消息发送原理
首先要发送消息必须先连接到rabbitmq-server。那怎么连接和发送消息呢?首先你的应用程序和rabbitmq会创建一个tcp链接。一旦tcp链接并通过认证。认证就是你试图连接rabbitmq时服务器的用户名和密码。认证通过,你的应用程序和rabbitmq之间就创建了一条amqp信道(channel),后续所有的消息都是基于这个信道完成。
3、为什么不直接通过tcp直接发送消息
对于操作系统来说创建和销毁tcp连接是非常昂贵的开销,而在并发高峰期时再去处理tcp创建与销毁显然是不合适的。这就造成了tcp的巨大浪费,而且操作系统每秒创建tcp的能力也是有限的,因此直接通过tcp发送消息会很快遇到瓶颈。
交换器(exchange)
前面提到rabbitmq在你的应用程序和队列中间增加了一层代理,代理根据路由策略把消息路由到指定队列。 交换器分为4类:
- direct(默认)
- headers
- fanout
- topic
1、direct。是交换器的默认实现,根据路由规则匹配上就会把消息投递到对应队列。
2、headers。 是一个自定义匹配规则类型,在队列和交换器绑定时,会设置一组键值对,消息中也包含一组键值对,当这些键值对匹配上,则会投递消息到对应队列。
3、fanout。是一种发布订阅模式,当你发送一条消息时,交换器会把消息广播到所有附加到这个交换器的队列上。 对于fanout来说routingkey是无效的。
4、topic。可以更灵活的匹配自己想订阅的消息。也是routingkey用处最大的一种。类似我们配置request mapping中的通配符。
安装rabbitmq
我是本机ubuntu16中安装,没有配置软件源,安装速度倒还能接收。rabbitmq是erlang开发,所以先安装erlang,再安装rabbitmq-server
sudo apt-get install erlang
sudo apt-get install rabbitmq-server
安装完成后查看运行状态 systemctl status rabbitmq-server
启动 service rabbitmq-server start
停止 serivce rabbitmq-server stop
重启 service rabbitmq-server restart
安装好rabbitmq后,启用web客户端 rabbitmq-plugines enable rabbitmq_management。
启动后默认使用guest/guest访问,仅支持localhost访问: http://localhost:15672。 web站点默认端口15672。 rabbitmq默认端口5672
在springboot中集成rabbitmq
1、配置信息
sprimg.rabbitmq.host=localhost
spring.rabbitmq.port=5672
spring.rabbitmq.username=guest
spring.rabbitmq.password=guest
2、默认交换器(direct)实现
import org.springframework.amqp.core.*;
import org.springframework.context.annotation.bean;
import org.springframework.context.annotation.configuration;
@configuration
public class directconfig {
@bean
public queue directqueue(){
return new queue("direct",false); //队列名字,是否持久化
}
@bean
public directexchange directexchange(){
return new directexchange("direct",false,false);//交换器名称、是否持久化、是否自动删除
}
@bean
binding binding(queue queue, directexchange exchange){
return bindingbuilder.bind(queue).to(exchange).with("direct");
}
}
消息生产者(发送者)
import org.springframework.amqp.core.amqptemplate;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.stereotype.component;
/**
* 消息发送--生产消息
*/
@component
public class sender {
@autowired
amqptemplate rabbitmqtemplate;
public void send(string message){
system.out.println("发送消息:"+message);
rabbitmqtemplate.convertandsend("direct",message);
}
}
消息消费者(接收者)
import org.springframework.amqp.rabbit.annotation.rabbithandler;
import org.springframework.amqp.rabbit.annotation.rabbitlistener;
import org.springframework.stereotype.component;
@component
@rabbitlistener(queues = "direct")
public class receiver {
@rabbithandler
public void handler(string message){
system.out.println("接收消息:"+message);
}
}
ok,来测试下,默认情况下,只能本机访问,我本地是在ubuntu虚拟机中,我在虚拟机中运行demo
import com.zhangfei.mq.sender;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.stereotype.controller;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.responsebody;
@controller
@requestmapping("/rabbitmq")
public class myrabbitmqcontroller {
@autowired
sender sender;
@requestmapping("/sender")
@responsebody
public string sender(){
system.out.println("send string:hello world");
sender.send("hello world");
return "sending...";
}
}
运行结果
参考资料
【推荐。作者:王磊】这里基础概念里有示意图,可以对rabbit涉及到的基础概念和流程有一个直观的认识
上一篇: sxs.exe的查杀bat代码
下一篇: 深度调查剖析2018年媒体人现状与出路