SUN IMQ 主题消息预览
有什么方法可以查看驻留在 JMS 主题目标中的消息吗?
我遇到了消息未从主题目标释放的问题。 该主题有 1 个生产者和 7 个消费者,但没有一个是持久的。
在此先感谢您的任何建议。
Is there any way to view the messages that reside inside a JMS Topic destiantion?
I've got a problem with messages not being released from Topic destination. The Topic has got 1 producer and 7 consumers and none of them is durable.
Thanks in advance for any suggestions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过一番挖掘终于找到了答案。
我需要使用以下命令:
其中 my_topic 是我的主题目标的名称。
收到如下响应后:
我可以使用此命令查看消息详细信息:
它将打印类似以下内容:
之后可以使用命令删除消息:
希望这可以帮助某人,有一天......
After some digging finally found out the answer.
I need to use the following command:
where my_topic is the name of my topic destination.
After receiving a response like:
I can view Message details with this command:
which willl print something like:
Afterwards the message can be deleted with command:
Hope this helps someone, someday...