我在Spring Websocket上使用STOMP来发送/接收RabbitMQ的消息。我希望能够为死信失败的消息设置“ requeue = false”。
来自兔子docs:NACK frames can optionally carry the requeue header which controls whether the message will be requeued or discarded/dead lettered. Default value is true.
我尚不清楚如何使用Websockets设置重新排队标头。
我尝试用headers.set("requeue", "false")
的{{1}}中的handleFrame(...)
设置标题。
使用Spring 4.3.23