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

溫馨提示×

溫馨提示×

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

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

springboot如何實現rabbitmq的隊列初始化和綁定

發布時間:2021-05-24 11:44:23 來源:億速云 閱讀:780 作者:小新 欄目:編程語言

小編給大家分享一下springboot如何實現rabbitmq的隊列初始化和綁定,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

配置文件,在rabbit中自動建立exchange,queue和綁定它們的關系

  1. 代碼里初始化exchange

  2. 代碼里初始化queue

  3. 代碼里綁定exchange,queue和routekey

  4. 配置文件,直接聲明vhost

代碼里初始化exchange

/**
  * rabbitMq里初始化exchange.
  *
  * @return
  */
 @Bean
 public TopicExchange crmExchange() {
  return new TopicExchange(EXCHANGE);
 }

代碼里初始化queue

/**
  * rabbitMq里初始化隊列crm.hello.
  *
  * @return
  */
 @Bean
 public Queue helloQueue() {
  return new Queue(HELLO);
 }

代碼里綁定exchange,queue和routekey

/**
  * 綁定exchange & queue & routekey.
  *
  * @param queueMessage 隊列
  * @param exchange   交換機
  * @param routekey   路由
  * @return
  */
 public Binding bindingExchange(Queue queueMessage, TopicExchange exchange, String routekey) {
  return BindingBuilder.bind(queueMessage).to(exchange).with(routekey);
 }

配置文件

spring:
  rabbitmq:
  host: localhost
  port: 5672
  username: guest
  password: guest
  virtual-host: lind

完整代碼

package com.lind.microservice.productCenter.mq;

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.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * amqp配置.
 */
@Configuration
public class AmqpConfig {

 /**
  * 交換機.
  */
 public final static String EXCHANGE = "crm";
 /**
  * hello隊列.
  */
 public final static String HELLO = "crm.hello";
 /**
  * 建立訂單隊列.
  */
 public final static String LIND_GENERATE_ORDER = "crm.generate.order";


 /**
  * 綁定exchange & queue & routekey.
  *
  * @param queueMessage 隊列
  * @param exchange   交換機
  * @param routekey   路由
  * @return
  */
 public Binding bindingExchange(Queue queueMessage, TopicExchange exchange, String routekey) {
  return BindingBuilder.bind(queueMessage).to(exchange).with(routekey);
 }


 /**
  * rabbitMq里初始化exchange.
  *
  * @return
  */
 @Bean
 public TopicExchange crmExchange() {
  return new TopicExchange(EXCHANGE);
 }

 /**
  * rabbitMq里初始化隊列crm.hello.
  *
  * @return
  */
 @Bean
 public Queue helloQueue() {
  return new Queue(HELLO);
 }

 /**
  * rabbitMq里初始化隊列crm.generate.order.
  *
  * @return
  */
 @Bean
 public Queue orderQueue() {
  return new Queue(LIND_GENERATE_ORDER);
 }
}

隊列發布者

package com.lind.microservice.productCenter.mq;

import java.util.Date;
import org.springframework.amqp.core.AmqpTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;

@Configuration
public class HelloPublisher {
 @Autowired
 AmqpTemplate rabbitTemplate;
 @Autowired
 AmqpConfig amqpConfig;

 public void hello() {
  String context = "hello " + new Date();
  System.out.println("HelloPublisher : " + context);
  amqpConfig.bindingExchange(
    amqpConfig.helloQueue(),
    amqpConfig.crmExchange(),
    "crm.hello.#"
  );
  this.rabbitTemplate.convertAndSend(AmqpConfig.EXCHANGE, AmqpConfig.HELLO, context);
 }
}

隊列訂閱者

package com.lind.microservice.productCenter.mq;

import org.springframework.amqp.rabbit.annotation.RabbitHandler;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;

@Component
@RabbitListener(queues = AmqpConfig.HELLO)
public class HelloSubscriber {
 @RabbitHandler
 public void process(String hello) {
  System.out.println("HelloSubscriber : " + hello);
 }
}

springboot是什么

springboot一種全新的編程規范,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程,SpringBoot也是一個服務于框架的框架,服務范圍是簡化配置文件。

看完了這篇文章,相信你對“springboot如何實現rabbitmq的隊列初始化和綁定”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

新乡县| 林州市| 唐山市| 顺昌县| 定陶县| 兴国县| 阿荣旗| 仙游县| 唐山市| 郧西县| 大化| 柏乡县| 尚义县| 依安县| 建湖县| 广丰县| 长丰县| 白山市| 日照市| 仙居县| 嘉禾县| 汤阴县| 寻甸| 遵化市| 连云港市| 柳州市| 金堂县| 章丘市| 龙里县| 高清| 蒲江县| 楚雄市| 静乐县| 长顺县| 武山县| 武定县| 宝山区| 甘孜县| 普洱| 呼伦贝尔市| 万盛区|