zoukankan      html  css  js  c++  java
  • springboot~rabbitmq自己通过UI手动发布队列需要注意的地方

    springboot里发布队列消息

    为了兼容性和可读性更好,我们一般使用json字符串做为数据载体。

     public void decreaseCallMonitor(CallMonitorInfo callMonitorInfo) throws Exception {
        try {
          rabbitTemplate.convertAndSend(
              AmqpConfig.DATA_COLLECTION_EXCHANGE,
              AmqpConfig.CALLMONITOR_DECREASE_BINDING,
              objectMapper.writeValueAsString(callMonitorInfo)
          );
          logger.debug("Enter {},message:{}", "decreaseCallMonitor", callMonitorInfo.toString());
    
        } catch (Exception ex) {
          logger.error("MQ.decreaseCallMonitor.error", ex);
        }
      }
    

    springboot里订阅消息

      @RabbitHandler
      @RabbitListener(queues = AmqpConfig.CUSTOMER_TERMINATE_BINDING)
      public void customerTerminate(String data) {
        try {
          TerminateDTO terminateDTO = objectMapper.readValue(data, TerminateDTO.class);
          customerBusinessInfoMapper.updateCustomer_business_info(ImmutableMap.of(
              "status", EnumCustomerStatus.TERMINATE.getCode(),
              "customerId", terminateDTO.getCustomerId()
          ));
        } catch (Exception ex) {
          logger.error("解约同步异常", ex);
        }
      }
    

    通过UI15672手动发消息要注意的地方

    1. 添加properties,声明它是utf-8及文本类型
    content_encoding:utf-8
    content_type:text/plain
    
    1. json字符串需要压缩,把回车换行都去掉,否则会出错
    {"signSalespersonId":1001,"signSalesperson":"mq","signTime":null,"customerId":501806811767111700}
    

    以上两点注意好,手动发布队列就没有问题了!

  • 相关阅读:
    nginx反向代理下没有获取到正确的clientIP问题发散
    TPL概要
    OAuth2:Authorization Flows
    ArrayList部分源码解析
    二分法之通用模板
    Leetcodet题目解析-1 c++版
    git初始用+将git项目上传到github
    参加ACM省赛有感
    杭电acm 1274展开字符串
    杭电acm 1263水果
  • 原文地址:https://www.cnblogs.com/lori/p/9805575.html
Copyright © 2011-2022 走看看