ActiveMQ 是否有基于 CLI 的消费者?
ActiveMQ 5.16.2 是否有任何基于 cli 的消费者可以用来检查正在排队到某个主题的消息,或者是否有一种方法(基于 GUI/CLI)来检查正在发布的消息。
一个简单的 jar 绝对可以为此编写,但我有一种感觉,应该有一些人们已经在使用的东西。
Are there any cli-based consumers for ActiveMQ 5.16.2 that I can use to check the messages being queued to a topic, or a way (GUI/CLI-based) to check the messages being published.
A simple jar can definitely be written for this, but I have a feeling that there should be something that people are already using for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ActiveMQ“经典”和 ActiveMQ Artemis 都附带了一些您可以使用的命令行工具。 ActiveMQ“经典”中的相关命令是:
consumer
Producer
browse
例如,您可以使用
Producer 发送消息> 命令,例如:
然后您可以使用
browse
命令浏览这些消息,例如:最后您可以使用
consume
命令消费这些消息,例如:Both ActiveMQ "Classic" and ActiveMQ Artemis ship with some command-line tools you can use. The relevant commands in ActiveMQ "Classic" are:
consumer
producer
browse
For example, you can send messages with the
producer
command, e.g.:You can then browse those messages with the
browse
command, e.g.:And you can finally consume those messages with the
consume
command, e.g.: