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

溫馨提示×

溫馨提示×

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

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

Java中SpringBoot如何整合RabbitMQ

發布時間:2021-12-24 09:31:56 來源:億速云 閱讀:195 作者:小新 欄目:軟件技術

這篇文章主要為大家展示了“Java中SpringBoot如何整合RabbitMQ”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Java中SpringBoot如何整合RabbitMQ”這篇文章吧。

如果要進行 RabbitMQ 整合的時候一定要注意以下幾個概念:交換空間、虛擬主機、隊列信息。本次為了方便起見將項目分為 兩個:RabbitMQ-Consumer、RabbitMQ-Producer。

1、 【兩個項目】將 rabbitmq 的依賴支持包拷貝到項目之中;

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

2、【microboot-rabbitmq-producer、microboot-rabbitmq-consumer】修改 application.yml 配置文件,追加 rabbitmq 的相關配置項:

server:
  port: 80
spring:
  messages:
    basename: i18n/Messages,i18n/Pages
  rabbitmq:
    addresses: rabbitmq-server
    username: studyjava
    password: hello
    virtual-host: /

 3、【microboot-rabbitmq-producer】建立一個消息的發送接口:

package cn.study.microboot.producer;
public interface IMessageProducerService {    
public void sendMessage(String msg) ;
}

4、 【microboot-rabbitmq-producer】為了可以正常使用 RabbitMQ 進行消息處理,你還需要做一個消息生產配置類;

package cn.study.microboot.config;
import org.springframework.amqp.core.Binding;
import org.springframework.amqp.core.BindingBuilder;
import org.springframework.amqp.core.DirectExchange;
import org.springframework.amqp.core.Queue;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class ProducerConfig {
    public static final String EXCHANGE = "study.microboot.exchange"; // 交換空間名稱
    public static final String ROUTINGKEY = "study.microboot.routingkey"; // 設置路由key
    public static final String QUEUE_NAME = "study.microboot.queue"; // 隊列名稱
    @Bean
    public Binding bindingExchangeQueue(DirectExchange exchange,Queue queue) {
        return BindingBuilder.bind(queue).to(exchange).with(ROUTINGKEY) ;
    }
    @Bean
    public DirectExchange getDirectExchange() { // 使用直連的模式
        return new DirectExchange(EXCHANGE, true, true);
    }
    @Bean
    public Queue queue() { // 要創建的隊列信息
        return new Queue(QUEUE_NAME);
    }
}

5、 【microboot-rabbitmq-producer】創建消息服務的實現子類:

package cn.study.microboot.producer.impl;
import javax.annotation.Resource;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.stereotype.Service;
import cn.study.microboot.config.ProducerConfig;
import cn.study.microboot.producer.IMessageProducerService;
@Service
public class MessageProducerServiceImpl implements IMessageProducerService {
    @Resource
    private RabbitTemplate rabbitTemplate;
    @Override
    public void sendMessage(String msg) {
        this.rabbitTemplate.convertAndSend(ProducerConfig.EXCHANGE,
                ProducerConfig.ROUTINGKEY, msg);
    }
}

6、 【microboot-rabbitmq-consumer】依然需要做一個消費者的配置程序類,而這個程序類里面主要的目的依然是設置交換空間、 路由 KEY 等信息。

package cn.study.microboot.config;
import org.springframework.amqp.core.Binding;
import org.springframework.amqp.core.BindingBuilder;
import org.springframework.amqp.core.DirectExchange;
import org.springframework.amqp.core.Queue;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class ConsumerConfig {
    public static final String EXCHANGE = "study.microboot.exchange"; // 交換空間名稱
    public static final String ROUTINGKEY = "study.microboot.routingkey"; // 設置路由key
    public static final String QUEUE_NAME = "study.microboot.queue"; // 隊列名稱
    @Bean
    public Queue queue() { // 要創建的隊列信息
        return new Queue(QUEUE_NAME);
    }
    @Bean
    public DirectExchange getDirectExchange() { // 使用直連的模式
        return new DirectExchange(EXCHANGE, true, true);
    }
    @Bean
    public Binding bindingExchangeQueue(DirectExchange exchange,Queue queue) {
        return BindingBuilder.bind(queue).to(exchange).with(ROUTINGKEY) ;
    }
}

7、 【microboot-rabbitmq-consumer】實現監聽處理類:

package cn.study.microboot.consumer;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Service;
@Service
public class MessageConsumerService {
    @RabbitListener(queues="study.microboot.queue")
    public void receiveMessage(String text) {    // 進行消息接收處理
        System.err.println("【*** 接收消息 ***】" + text);
    }
}

8、 【microboot-rabbitmq-producer】創建一個測試類實現消息的發送處理。

package cn.study.microboot.test;
import javax.annotation.Resource;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
import cn.study.microboot.StartSpringBootMain;
import cn.study.microboot.producer.IMessageProducerService;
@SpringBootTest(classes = StartSpringBootMain.class)
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
public class TestActiveMQ {
    @Resource
    private IMessageProducerService messageProducer;
    @Test
    public void testSend() throws Exception {
        for (int x = 0; x < 100; x++) {
            this.messageProducer.sendMessage("study - " + x);
        }
    }
}

9、 【microboot-rabbitmq-consumer】編寫消息接收測試類,這里面不需要編寫代碼,只需要做一個休眠即可:

package cn.study.microboot;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
@SpringBootTest(classes = StartSpringBootMain.class)
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
public class AppTest {
    @Test
    public void testStart() throws Exception {
        Thread.sleep(Long.MAX_VALUE);
    }
}

整體進行項目開發之中整合的處理步驟還是簡單,但是千萬要注意,由于是第一次整合處理,所以將生產者與消費者的配置 類分開了,實際上這兩個類的作用是完全一樣的。

以上是“Java中SpringBoot如何整合RabbitMQ”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

深水埗区| 苏尼特左旗| 清原| 岑溪市| 惠州市| 威信县| 西乡县| 潮州市| 湘潭县| 凤城市| 静乐县| 彰化县| 西平县| 普兰店市| 通河县| 方正县| 兰州市| 忻城县| 池州市| 大名县| 巴塘县| 锡林浩特市| 纳雍县| 麻阳| 迁西县| 广宁县| 保定市| 化德县| 抚宁县| 安福县| 阜南县| 惠州市| 龙川县| 明光市| 临海市| 蒙阴县| 富锦市| 恩平市| 济宁市| 永泰县| 香格里拉县|