ActiveMQ 是否有基于 CLI 的消费者?

发布于 2025-01-14 04:40:47 字数 141 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不即不离 2025-01-21 04:40:47

ActiveMQ“经典”和 ActiveMQ Artemis 都附带了一些您可以使用的命令行工具。 ActiveMQ“经典”中的相关命令是:

  • consumer
  • Producer
  • browse

例如,您可以使用Producer 发送消息> 命令,例如:

$ ./activemq producer --destination queue://myQueue

然后您可以使用 browse 命令浏览这些消息,例如:

$ ./activemq browse myQueue

最后您可以使用 consume 命令消费这些消息,例如:

$ ./activemq consumer --destination queue://myQueue

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.:

$ ./activemq producer --destination queue://myQueue

You can then browse those messages with the browse command, e.g.:

$ ./activemq browse myQueue

And you can finally consume those messages with the consume command, e.g.:

$ ./activemq consumer --destination queue://myQueue
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文