SpringCloud分散式微服務b2b2c電子商務(十三)Springboot整合RabbitMQ

gung123發表於2019-12-31

這篇文章帶你瞭解怎麼整合RabbitMQ伺服器,並且透過它怎麼去傳送和接收訊息。我將構建一個springboot工程,透過

RabbitTemplate去透過MessageListenerAdapter去訂閱一個POJO型別的訊息。


準備工作

15min

IDEA

maven 3.0

在開始構建專案之前,機器需要安裝rabbitmq,你可以去官網下載, ,如果

你是用的Mac(程式設計師都應該用mac吧),你可以這樣下載:

brew install rabbitmq

安裝完成後開啟伺服器:

rabbitmq-server

開啟伺服器成功,你可以看到以下資訊:

brew install rabbitmq
安裝完成後開啟伺服器:
rabbitmq-server
開啟伺服器成功,你可以看到以下資訊:

構建工程
構架一個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類,它定義了一個方法去接收訊息,當你註冊它去接收訊息,你可以給它取任何的名字。瞭解springcloud架構可以加求求:三五三六二四七二五九。其中,它有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);
    }
}


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69952307/viewspace-2671454/,如需轉載,請註明出處,否則將追究法律責任。

相關文章