我们正在尝试使用 Spring AMQP 在 RabbitMQ 中进行异步调用,有人可以告诉我如何使用 spring amqp 配置回复队列、correlationId、(属性)吗?
String corrId = java.util.UUID.randomUUID().toString();
BasicProperties props = new BasicProperties
.Builder()
.correlationId(corrId)
.replyTo(replyQueueName)
.build();
channel.basicPublish("", requestQueueName, props, message.getBytes());