Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以以编程方式查询 activemq 的积压消息总数?我已经研究过相同但无法找到足够的细节。
您可以使用 JMX 来实现您正在尝试的内容,如下所示。
https://stackoverflow.com/a/20035519/1914051
我认为最接近您的任务的是 javax.jms.QueueBrowser。它允许查看队列中的消息而不删除它们。可以从 Session 创建 QueueBrowser。