首页 > 其他 > 详细

Rabbitmq 入门

时间:2019-12-24 23:34:00      阅读:102      评论:0      收藏:0      [点我收藏+]

启动一个 rabbitmq

version: "3.2"

services:
  some-rabbit:
    image: rabbitmq:3-management
    hostname: "my-host"
    environment:
      RABBITMQ_ERLANG_COOKIE: "SWQOKODSQALRPCLNMEQG"
      RABBITMQ_DEFAULT_USER: "rabbitmq"
      RABBITMQ_DEFAULT_PASS: "rabbitmq"
      RABBITMQ_DEFAULT_VHOST: "/"
    ports:
      - "15672:15672"
      - "5672:5672"

  

启动一个 spring boot 项目,配置

spring:
  rabbitmq:
    username: rabbitmq
    password: rabbitmq

  

Rabbitmq 中的 exchange 的三种主要类型,请参考 https://zhuanlan.zhihu.com/p/37198933

下面就来了解一下 Exchange 的三种主要类型:Direct、Fanout 和 Topic

Direct 策略

(Default Exchange 是一种特殊的 Direct Exchange,它的名称为空,故只关心队列名称即可)

queue

@Bean
public Queue myQueue() {
    return new Queue("myQueue", false);
}

producer

@Test
void producer1() {
    rabbitTemplate.convertAndSend("myQueue", "Hello, world!");
}

cosumer

@RabbitListener(queues = "myQueue")
public void listen(String in) {
    System.out.println("Message read from myQueue : " + in);
}

 

Fanout 策略

queue

@Bean
public Declarables fanoutBindings() {
    Queue fanoutQueue1 = new Queue("fanout.queue1", false);
    Queue fanoutQueue2 = new Queue("fanout.queue2", false);
    FanoutExchange fanoutExchange = new FanoutExchange("fanout.exchange");

    return new Declarables(
            fanoutQueue1,
            fanoutQueue2,
            fanoutExchange,
            BindingBuilder.bind(fanoutQueue1).to(fanoutExchange),
            BindingBuilder.bind(fanoutQueue2).to(fanoutExchange));
}

producer

@Test
void producer2() {
    String message = " payload is broadcast";
    rabbitTemplate.convertAndSend("fanout.exchange", "", "fanout" + message);
}

consumer(两个 )

@RabbitListener(queues = {"fanout.queue1"})
public void receiveMessageFromFanout1(String message) {
    System.out.println("Received fanout 1 message: " + message);
}

@RabbitListener(queues = {"fanout.queue2"})
public void receiveMessageFromFanout2(String message) {
    System.out.println("Received fanout 2 message: " + message);
}

  

Topic 策略

队列

@Bean
public Declarables topicBindings() {
    Queue topicQueue1 = new Queue("topicQueue1Name", false);
    Queue topicQueue2 = new Queue("topicQueue2Name", false);

    TopicExchange topicExchange = new TopicExchange("topicExchangeName");

    return new Declarables(
            topicQueue1,
            topicQueue2,
            topicExchange,
            BindingBuilder
                    .bind(topicQueue1)
                    .to(topicExchange).with("*.important.*"),
            BindingBuilder
                    .bind(topicQueue2)
                    .to(topicExchange).with("#.error"));
}

生产者

@Test
void producer2() {
    String message = " payload is broadcast";
    rabbitTemplate.convertAndSend("topicExchangeName", "hello.important.warn",
            "topic important warn" + message);
    rabbitTemplate.convertAndSend("topicExchangeName", "my.important.error",
            "topic important error" + message);
}

消费者

@RabbitListener(queues = {"topicQueue1Name"})
public void receiveMessageFromTopic1(String message) {
    System.out.println("Received topic 1 (" + "BINDING_PATTERN_IMPORTANT" + ") message: " + message);
}

@RabbitListener(queues = {"topicQueue2Name"})
public void receiveMessageFromTopic2(String message) {
    System.out.println("Received topic 2 (" + "BINDING_PATTERN_ERROR" + ") message: " + message);
}

  

233

 

Rabbitmq 入门

原文:https://www.cnblogs.com/lemos/p/12093882.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!