Skip to content

Instantly share code, notes, and snippets.

@codethereforam
Last active November 6, 2019 12:01
Show Gist options
  • Save codethereforam/83bdeff927120e9c3c35004af9bafb06 to your computer and use it in GitHub Desktop.
Save codethereforam/83bdeff927120e9c3c35004af9bafb06 to your computer and use it in GitHub Desktop.
rabbitmq发送含header的消息
public void sendMsg(Map<String, String> headerMap, ...)
rabbitTemplate.convertAndSend(exchange, routingKey, msg,
message -> {
for (Map.Entry<String, String> entry : headerMap.entrySet()) {
message.getMessageProperties().setHeader(entry.getKey(), entry.getValue());
}
return message;
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment