91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Springboot怎么整合RabbitMQ

發布時間:2021-09-29 18:03:59 來源:億速云 閱讀:172 作者:柒染 欄目:大數據

本篇文章給大家分享的是有關Springboot怎么整合RabbitMQ,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

準備工作

  • 15min

  • IDEA

  • maven 3.0

在開始構建項目之前,機器需要安裝rabbitmq,你可以去官網下載,http://www.rabbitmq.com/download.html ,如果你是用的Mac(程序員都應該用mac吧),你可以這樣下載:

brew install rabbitmq

安裝完成后開啟服務器

rabbitmq-server

開啟服務器成功,你可以看到以下信息:

            RabbitMQ 3.1.3. Copyright (C) 2007-2013 VMware, Inc.
##  ##      Licensed under the MPL.  See http://www.rabbitmq.com/
##  ##
##########  Logs: /usr/local/var/log/rabbitmq/rabbit@localhost.log
######  ##        /usr/local/var/log/rabbitmq/rabbit@localhost-sasl.log
##########
            Starting broker... completed with 6 plugins.

構建工程

構架一個SpringBoot工程,其pom文件依賴加上spring-boot-starter-amqp的起步依賴:

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

創建消息接收者

在任何的消息隊列程序中,你需要創建一個消息接收者,用于響應發送的消息。

@Component
public class Receiver {

    private CountDownLatch latch = new CountDownLatch(1);

    public void receiveMessage(String message) {
        System.out.println("Received <" + message + ">");
        latch.countDown();
    }

    public CountDownLatch getLatch() {
        return latch;
    }

}

消息接收者是一個簡單的POJO類,它定義了一個方法去接收消息,當你注冊它去接收消息,你可以給它取任何的名字。其中,它有CountDownLatch這樣的一個類,它是用于告訴發送者消息已經收到了,你不需要在應用程序中具體實現它,只需要latch.countDown()就行了。

創建消息監聽,并發送一條消息

在spring程序中,RabbitTemplate提供了發送消息和接收消息的所有方法。你只需簡單的配置下就行了:

  • 需要一個消息監聽容器

  • 聲明一個quene,一個exchange,并且綁定它們

  • 一個組件去發送消息

代碼清單如下:

package com.forezp;

import com.forezp.message.Receiver;
import org.springframework.amqp.core.Binding;
import org.springframework.amqp.core.BindingBuilder;
import org.springframework.amqp.core.Queue;
import org.springframework.amqp.core.TopicExchange;
import org.springframework.amqp.rabbit.connection.ConnectionFactory;
import org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer;
import org.springframework.amqp.rabbit.listener.adapter.MessageListenerAdapter;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
public class SpringbootRabbitmqApplication {

     final static String queueName = "spring-boot";

    @Bean
    Queue queue() {
        return new Queue(queueName, false);
    }

    @Bean
    TopicExchange exchange() {
        return new TopicExchange("spring-boot-exchange");
    }

    @Bean
    Binding binding(Queue queue, TopicExchange exchange) {
        return BindingBuilder.bind(queue).to(exchange).with(queueName);
    }

    @Bean
    SimpleMessageListenerContainer container(ConnectionFactory connectionFactory,
                                             MessageListenerAdapter listenerAdapter) {
        SimpleMessageListenerContainer container = new SimpleMessageListenerContainer();
        container.setConnectionFactory(connectionFactory);
        container.setQueueNames(queueName);
        container.setMessageListener(listenerAdapter);
        return container;
    }

    @Bean
    MessageListenerAdapter listenerAdapter(Receiver receiver) {
        return new MessageListenerAdapter(receiver, "receiveMessage");
    }

    public static void main(String[] args) {
        SpringApplication.run(SpringbootRabbitmqApplication.class, args);
    }
}

創建一個測試方法:

@Component
public class Runner implements CommandLineRunner {

    private final RabbitTemplate rabbitTemplate;
    private final Receiver receiver;
    private final ConfigurableApplicationContext context;

    public Runner(Receiver receiver, RabbitTemplate rabbitTemplate,
            ConfigurableApplicationContext context) {
        this.receiver = receiver;
        this.rabbitTemplate = rabbitTemplate;
        this.context = context;
    }

    @Override
    public void run(String... args) throws Exception {
        System.out.println("Sending message...");
        rabbitTemplate.convertAndSend(Application.queueName, "Hello from RabbitMQ!");
        receiver.getLatch().await(10000, TimeUnit.MILLISECONDS);
        context.close();
    }

}

啟動程序,你會發現控制臺打印:

Sending message...
Received <Hello from RabbitMQ!>

以上就是Springboot怎么整合RabbitMQ,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

射阳县| 兴义市| 汶上县| 张掖市| 博白县| 调兵山市| 桓仁| 清流县| 广西| 青冈县| 工布江达县| 正镶白旗| 峨眉山市| 商都县| 云霄县| 雷州市| 泾阳县| 九龙坡区| 元朗区| 海淀区| 周至县| 于田县| 措勤县| 双牌县| 乐安县| 来安县| 新竹县| 屏南县| 榆中县| 巴中市| 霸州市| 江门市| 白河县| 曲周县| 蒲江县| 额敏县| 阳曲县| 乐平市| 邵阳市| 峨眉山市| 正安县|