Tool for testing RabbitMQ instance with sample publisher and consumer of text messages.
queue-name "rabbit-mq-instance-url" "message-to-send-receive"
docker run -d --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3-management
./mvnw clean install
java -jar target/rabbitmq-pub-cons-tester-3.0.3-RELEASE.jar \
net.ironoc.mq.test3 "amqp://localhost" "Hello There"
Queue name is net.ironoc.mq.test3
Connection URI is amqp://localhost
Message Content is Hello There
Java Queue - Message RabbitMQ Java Sent: 'Hello There'
{N|T} Waiting for messages.
Java Queue - Message Received 'Hello There'
http://localhost:15672/

cd src/main/resources/js
npm install amqplib
node consumer.js
cd src/main/resources/js
node producer.js
