Rabbitmq是一個開源的消息代理軟件,是AMQP協議的實現。核心做用就是建立消息隊列,異步發送和接收消息。一般用來在高併發中處理削峯填谷、延遲處理、解耦系統之間的強耦合、處理秒殺訂單。 入門rabbitmq以前主要是想了解下秒殺排隊訂單入庫後,異步通知客戶端秒殺結果。html
瞭解rabbitmq以前先要了解3個基本概念:生產者、消費者、代理(隊列)。 rabbitmq在生產者和代理中間作了一層抽象。這樣消息生產者和隊列就沒有直接聯繫,在中間加入了一層交換器(Exchange)。這樣消息生產者把消息交給交換器,交換器根據路由策略再把消息轉發給對應隊列。java
首先要發送消息必須先鏈接到rabbitmq-server。那怎麼鏈接和發送消息呢?首先你的應用程序和rabbitmq會建立一個TCP連接。一旦TCP連接並經過認證。認證就是你試圖鏈接rabbitmq時服務器的用戶名和密碼。認證經過,你的應用程序和rabbitmq之間就建立了一條AMQP信道(Channel),後續全部的消息都是基於這個信道完成。web
對於操做系統來講建立和銷燬TCP鏈接是很是昂貴的開銷,而在併發高峯期時再去處理TCP建立與銷燬顯然是不合適的。這就形成了TCP的巨大浪費,並且操做系統每秒建立TCP的能力也是有限的,所以直接經過TCP發送消息會很快遇到瓶頸。spring
前面提到rabbitmq在你的應用程序和隊列中間增長了一層代理,代理根據路由策略把消息路由到指定隊列。 交換器分爲4類:ubuntu
一、direct。是交換器的默認實現,根據路由規則匹配上就會把消息投遞到對應隊列。服務器
二、headers。 是一個自定義匹配規則類型,在隊列和交換器綁定時,會設置一組鍵值對,消息中也包含一組鍵值對,當這些鍵值對匹配上,則會投遞消息到對應隊列。併發
三、fanout。是一種發佈訂閱模式,當你發送一條消息時,交換器會把消息廣播到全部附加到這個交換器的隊列上。 對於fanout來講routingkey是無效的。app
四、topic。能夠更靈活的匹配本身想訂閱的消息。也是routingkey用處最大的一種。相似咱們配置request mapping中的通配符。異步
我是本機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
spring.rabbitmq.host=localhost spring.rabbitmq.port=5672 spring.rabbitmq.username=guest spring.rabbitmq.password=guest
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..."; } }
運行結果
http://www.javashuo.com/article/p-thixepto-hr.html 【推薦。做者:王磊】這裏基礎概念裏有示意圖,能夠對rabbit涉及到的基礎概念和流程有一個直觀的認識