别名队列和本地队列有什么区别?
就 JMS 而言,我只需要简要概述一下它们的不同之处。 IE。别名是否收到与本地收到的消息相同的消息。
In terms of JMS I just need a brief overview on how they are different. ie. does the alias receive the same messages that the local one does.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@toop:别名的概念在概念上类似于我们在j2ee应用程序中将jndi引用名称映射到实际的jndi......基本上别名是给队列的别名......开发人员在他的代码中使用别名队列名称,但实际队列可以通过别名队列指向。因此管理员可以更改实际队列,但开发人员的代码不会更改...
别名队列的另一个很好的用途是,以防不同的应用程序希望以不同的方式使用同一队列。例如分配不同的默认优先级或不同的默认持久性值
@toop: concept of alias is similar in concept as we have jndi reference name to actual jndi mapping in j2ee application....basically alias is alias name given to a queue...developer uses alias queue name in his code but actual queue can be pointed by alias queue..so administrator may change actual queue but developer's code will not change...
another good use of alias queue is that in case different applications want to work with the same queue in different ways. For e.g. assign different default priorities or different default persistence values