其他分享
首页 > 其他分享> > springBoot + RabbitMq时候遇到的诡异问题

springBoot + RabbitMq时候遇到的诡异问题

作者:互联网

在使用MQ时候,使用的Exchange 是 TOPIC 类型的 监听该对列的时候发现返回的数据很奇葩,在这纪录一下

import org.springframework.amqp.core.Message;
@RabbitListener(queues = XXX)
@RabbitHandler
public void receive(Message msg) {
    byte[] body = msg.getBody();
    String s = new String(body);
}

之前使用的是Object接受发现返回了 一个对象,包含了 Body 和 MessageProperties 其中Body 是发送到mq的消息体 MessageProperties是请求体的信息,找了好长时间发现了 Message这个类。直接获取数据后对数据进行处理

 

标签:body,Body,诡异,springBoot,MessageProperties,RabbitMq,msg,Message,String
来源: https://blog.csdn.net/Pomel0/article/details/91882306