Message durability
确保消息在server 出现问题或者recovery能恢复: declare it as durable in the producer and consumer code.
boolean durable true;
channel.queueDeclare("hello", durable, false, false, null);Queue 指定
//使用指定的queue&…
在Linux环境下,比如在ubuntu就直接有uuidgen命令直接获取uuid值。在Windows环境下常用的git bash中没有对应的命令,略有不便。这里用脚本写一个uuidgen,模拟Linux环境下的uuidgen命令。 #! /usr/bin/perl
use v5.14;
use Win32;sub uuidGen {…