将JMS消息传递到Weblogic中集群中的所有节点
有没有办法将 WebLogic 9.x 集群配置为从远程客户端接收单个 JMS 队列地址上的 JMS 消息,并将该消息传递到每个集群节点?任何链接都会很棒。
Is there a way to configure WebLogic 9.x cluster to receive a JMS message on a single JMS queue address from remote client and that the message is delivered to each cluster node? Any links would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,JMS 队列具有点对点语义 - 每条消息只传送一次。如果你想传递给所有监听者,你需要使用主题而不是队列。
No, a JMS queue has a point-to-point semantics - each message is delivered exactly once. If you want to deliver to all listeners, you need to use a Topic rather than a Queue.