如何获取现有的 JMS 队列?
我觉得这可能是一个非常简单的问题,但这是我第一次涉足 JMS,所以我有点不确定。
我正在尝试写入现有的 JMS 队列(然后从另一个队列读取),我知道该队列的队列名称、主机、队列管理器和通道。如何以 javax.jms.Destination
对象的形式获取对此队列的引用?
我发现的所有示例都涉及调用 javax.jms.Session.createQueue(String),但由于此队列已经存在,我不想创建另一个队列,对吗?或者我误解了发生了什么?
如果重要的话,我正在使用 com.ibm.msg.client.jms 驱动程序。
谢谢!
I feel like this is probably a pretty simple question, but this is my first foray into JMS, so I am a little unsure.
I am trying to write to an existing JMS queue (and then read from another queue), for which I know the queue name, host, queue manager, and channel. How do I get a reference to this queue in the form of a javax.jms.Destination
object?
All of the examples I have found involve calling javax.jms.Session.createQueue(String)
, but since this queue already exists, I don't want to create another one, right? Or am I misunderstanding what is going on?
If it matters, I am using the com.ibm.msg.client.jms driver.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,运行应用程序的容器将在其命名服务中绑定
Queue
。容器中的应用程序可以使用 JNDI 查找并使用它。Normally, the container in which your application runs will bind the
Queue
in its naming service. An application in the container can look it up with JNDI and use it.要添加上面埃里克森的答案:
这是获取和浏览 JMS 队列的示例:(使用 javax.jms-api 2.x)
确保使用这些 Maven 依赖项:
To add erickson's answer above:
This is an example of getting and browsing a JMS Queue: (using javax.jms-api 2.x)
Make sure you use these Maven dependencies: