内容简介:为了兼容性和可读性更好,我们一般使用json字符串做为数据载体。以上两点注意好,手动发布队列就没有问题了!
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手动发消息要注意的地方
- 添加properties,声明它是utf-8及文本类型
content_encoding:utf-8 content_type:text/plain
- json字符串需要压缩,把回车换行都去掉,否则会出错
{"signSalespersonId":1001,"signSalesperson":"mq","signTime":null,"customerId":501806811767111700}
以上两点注意好,手动发布队列就没有问题了!
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
How to Think Like a Computer Scientist: Learning with Python
Allen B. Downey、Jeffrey Elkner、Chris Meyers / Green Tea Press / 2002-1-4 / USD 24.95
""How to Think Like a Computer Scientist"" is an introduction to programming using Python, one of the best languages for beginners. This is a Free Book -- you can download it from thinkpython.com. But......一起来看看 《How to Think Like a Computer Scientist: Learning with Python》 这本书的介绍吧!