rabbitTemplate.convertAndSend( "order-exchange", "order.ABC" , order , correlationData);
就如这里的第三个参数 order
1
S9Yh4wIFsBG7jnE4 2019-11-19 14:54:38 +08:00
amqpTemplate.convertAndSend(type, new PushProduceFactory())
void convertAndSend(String var1, Object var2) throws AmqpException; public void convertAndSend(String routingKey, Object object) throws AmqpException { this.convertAndSend(this.exchange, routingKey, object, (CorrelationData)null); } 对象吧,object |
2
foamvalue 2019-11-19 15:32:34 +08:00
Base64 加密字符串
|
3
mango88 2019-11-19 17:22:04 +08:00
有一些预定义的序列化器,序列化成 byte Array
|
4
mango88 2019-11-19 17:22:41 +08:00
自定义的对象 应该会抛出异常
|
5
BBCCBB 2019-11-19 17:25:42 +08:00
自己配置了啥 MessageConverter 就会转成啥.
在网络层都得二进制. |
6
GTim 2019-11-19 19:31:37 +08:00
你是做数字货币交易市场的?
|
7
qimok 2019-11-19 19:40:11 +08:00
一般用 MessageConverter 转成 json 发送吧
|
8
RedBeanIce 2019-11-20 08:42:38 +08:00
初始的是转成序列化吧,,可以自己改成 json
|