当前位置:   article > 正文

RabbitMQ - 07 - 通过注解创建队列和交换机_rabbitmq手动创建队列

rabbitmq手动创建队列

之前消息模型的实现,都是通过rabbitMQ Management 控制台来手动创建 queue 和 exchange 的

项目开发中有两种方式通过代码声明 创建

一种是通过 Bean 方式,这种代码量较大 稍繁琐

一种是通过注解的方式声明

先编写消费者代码

通过注解绑定了 消息队列,交换机,还有 routing key, 注解会在启动时根据这些名字自动进行创建

  1. package cn.itcast.mq.lintener;
  2. import lombok.extern.slf4j.Slf4j;
  3. import org.springframework.amqp.core.ExchangeTypes;
  4. import org.springframework.amqp.rabbit.annotation.Exchange;
  5. import org.springframework.amqp.rabbit.annotation.Queue;
  6. import org.springframework.amqp.rabbit.annotation.QueueBinding;
  7. import org.springframework.amqp.rabbit.annotation.RabbitListener;
  8. import org.springframework.stereotype.Component;
  9. @Slf4j
  10. @Component
  11. public class MQListener {
  12. @RabbitListener(bindings = @QueueBinding(
  13. value = @Queue(name = "cyh.queue"),
  14. exchange = @Exchange(name = "cyh.topic",type = ExchangeTypes.TOPIC),
  15. key = {"#.com"}
  16. ))
  17. public void listenTopicQueue3(String message){
  18. log.info("消费者cyh收到了 : " + message);
  19. }
  20. }

编写生产者代码

交换机名要跟 消费者绑定的对应

还有 routing key 规则也要保证相符

  1. package cn.itcast.mq.helloworld;
  2. import org.apache.logging.log4j.message.Message;
  3. import org.junit.jupiter.api.Test;
  4. import org.springframework.amqp.rabbit.core.RabbitTemplate;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.boot.test.context.SpringBootTest;
  7. import org.springframework.messaging.converter.StringMessageConverter;
  8. @SpringBootTest
  9. public class SpringAMQPTest {
  10. @Autowired
  11. private RabbitTemplate rabbitTemplate;
  12. // topic交换机
  13. @Test
  14. void testTopicExchange(){
  15. String exchangeName = "cyh.topic";
  16. String message = "hello, topic";
  17. rabbitTemplate.convertAndSend(exchangeName,"china.com",message);
  18. }
  19. }

最后运行  成功接收到消息

队列  交换机 也自动创建好了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/639594
推荐阅读
相关标签
  

闽ICP备14008679号