我有一个使用ActiveMQ的应用程序,通常,我使用AMQ的Web UI将消息发送到我的软件正在使用的队列中进行测试。
我想将其半自动化,并希望AMQ的命令行能够通过在命令调用中以文本形式提供该消息或将其理想地从文件中读取来将消息发送到特定队列。
示例:
./activemq-send queue="my-queue" messageFile="~/someMessage.xml"
或:
./activemq-send queue="my-queue" message="<someXml>...</someXml>"
有什么办法吗?
答案 0 :(得分:2)
ActiveMQ具有REST界面,您可以使用例如curl
实用程序从命令行向其发送消息。
这是我编写并用于此目的的脚本:
#!/bin/bash
#
#
# Sends a message to the message broker on localhost.
# Uses ActiveMQ's REST API and the curl utility.
#
if [ $# -lt 2 -o $# -gt 3 ] ; then
echo "Usage: msgSender (topic|queue) DESTINATION [ FILE ]"
echo " Ex: msgSender topic myTopic msg.json"
echo " Ex: msgSender topic myTopic <<< 'this is my message'"
exit 2
fi
UNAME=admin
PSWD=admin
TYPE=$1
DESTINATION=$2
FILE=$3
BHOST=${BROKER_HOST:-'localhost'}
BPORT=${BROKER_REST_PORT:-'8161'}
if [ -z "$FILE" -o "$FILE" = "-" ] ; then
# Get msg from stdin if no filename given
( echo -n "body=" ; cat ) \
| curl -u $UNAME:$PSWD --data-binary '@-' --proxy "" \
"http://$BHOST:$BPORT/api/message/$DESTINATION?type=$TYPE"
else
# Get msg from a file
if [ ! -r "$FILE" ] ; then
echo "File not found or not readable"
exit 2
fi
( echo -n "body=" ; cat $FILE ) \
| curl -u $UNAME:$PSWD --data-binary '@-' --proxy "" \
"http://$BHOST:$BPORT/api/message/$DESTINATION?type=$TYPE"
fi
答案 1 :(得分:2)
您可以使用"A" utility来做到这一点。
a -b tcp://somebroker:61616 -p @someMessage.xml my-queue
免责声明:我是A的作者,曾经写过一篇文章来做这件事。还有其他方法,例如REST接口,Groovy脚本等等。
答案 2 :(得分:0)
基于Rob Newton的回答,这就是我用来将文件发布到队列的内容。我还发布了一个自定义属性(通过activemq Webconsole无法实现)
( echo -n "body=" ; cat file.xml ) | curl --data-binary '@-' -d "customProperty=value" "http://admin:admin@localhost:8161/api/message/$QueueName?type=$QueueType"