当前位置:   article > 正文

SpringCloud中使用RabbitMQ实现异步_rabbitlistener 没有异步

rabbitlistener 没有异步

在前面订单服务调用商品服务时候,我们采用的是同步的方式。订单服务调用商品服务,商品服务库存进行操作。如果订单服务这里需要同时调用支付服务、商品服务多个服务时,等待各个服务响应完,整个订单请求才算执行完毕,这对程序使用体验大打折扣。
而异步时,客户端请求不会阻塞进程,服务端的响应可以是非即时的。

异步常见形态

  • 通知 -------------单向请求,单当面的发送请求。
  • 请求/异步响应---- 客户端发送请求到客户端,客户端非即时响应
  • 消息------------ 消息的生产与消费,这里我们已MQ为主

MQ应用场景

1、异步处理
2、流量削峰
3、日志处理
4、应用解耦

MQ的基础使用

1、导入依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-amqp</artifactId>
</dependency>
  • 1
  • 2
  • 3
  • 4

2、添加配置

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-amqp</artifactId>
</dependency>
  • 1
  • 2
  • 3
  • 4

3、创建消息接收方
使用注解@RabbitListener监听队列情况

/**
 * 接收方
 */
@Component
@Slf4j
public class ReceiveMessage {
    @RabbitListener(queues = "myqueue")
    public void receive(String messge) {
      log.info("message={}",messge);
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

4、消息发送测试

/**
 * 发送mq消息测试
 */
@RunWith(SpringRunner.class)
@SpringBootTest
public class ReceiveMessageTest {
    @Autowired
    private AmqpTemplate amqpTemplate;
    @Test
    public void send() throws Exception {
        amqpTemplate.convertAndSend("myqueue","now :" + new Date());
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

5、在web页面手动添加一个myqueue队列,进行测试。

在上面基础操作中,队列还需要我们在RabbitMq中手动床架,这肯定是不符合项目中自动创建需要的。

  • 使用下面注解方式可以自动创建队列
@RabbitListener(queuesToDeclare = @Queue("myQueue"))
  • 1
  • 自动创建队列,并将Exchange和Queue进行绑定
@RabbitListener(bindings = @QueueBinding(
            value = @Queue("myQueue"),
            exchange = @Exchange("myExchange")
    ))
  • 1
  • 2
  • 3
  • 4

如果在一条订单中有数码商品服务水果商品服务进行交互,这个时候需要对订单交换机(Exchange)进行分组,来调用不同的队列。

简单案例:

1、模拟数码服务和水果服务

 /**
     * 数码供应商服务 接收消息
     * @param messge
     */
    @RabbitListener(bindings = @QueueBinding(
            exchange = @Exchange("myOrder"),
            key = "computer",
            value = @Queue("computerOrder")
    ))
    public void processComputer(String messge) {
        log.info("computer MqReceive: {}",messge);
    }

    /**
     * 水果供应商服务 接收消息
     * @param messge
     */
    @RabbitListener(bindings = @QueueBinding(
            exchange = @Exchange("myOrder"),
            key = "fruit",
            value = @Queue("fruitOrder")
    ))
    public void fruitComputer(String messge) {
        log.info("computer MqReceive: {}",messge);
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

2、模拟订单消息发送方
这里**converAndSend()**方法根据exchang交换机和分组key,即可找到接收消息的队列

   /**
     * 订单发送方
     * @throws Exception
     */
    @Test
    public void sendOrder() throws Exception {
        amqpTemplate.convertAndSend("myOrder","computer","now :" + new Date());
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

在这里插入图片描述

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

闽ICP备14008679号