JMS 使用者和消息驱动 Bean (MDB) 之间有什么区别

发布于 2024-11-01 03:29:37 字数 134 浏览 0 评论 0原文

异步 JMS(Java 消息服务)使用者与实际的 MDB(消息驱动 Bean)之间有什么区别吗?我看到的唯一区别是 MDB 类 有异步 JMS 使用者没有的 @MessageDriven 注释。

我还缺少什么吗?

Is there any difference between an asynchronous JMS (Java Messaging Service) consumer vs an actual MDB (Message Driven Bean). The only difference I see is the MDB class
has @MessageDriven annotation which the asynchronous JMS consumer doesn't.

Anything else that I am missing ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白首有我共你 2024-11-08 03:29:37

在您的情况下,您的 MDB 作为 JMS 使用者。 MDB 是 EJB 特定术语,而消费者是 JMS 术语。 JMS 使用者也可以是消息驱动的 POJO,从技术上讲,它不是 EJB。

对评论 A1 的答复

。是的,可以正确地说,普通 JMS 使用者不能像 EJB 一样被池化/管理,除非该 JMS 使用者恰好由 EJB 或 Spring 容器等容器管理。

A2。 MDB 实际上只是满足与 EJB 异步通信的要求。当它们基于 JMS 时,您的 MDB 在技术上也是一个 JMS Consumer。但 MDB 也可以基于非 JMS,例如:基于 JCA(Java 连接器架构)的 MDB。您可以查看这篇文章,了解有关基于非 JMS 的 MDB 的更多详细信息:http://debupanda.blogspot.com/2006/08/using-ejb-30-message-driven-bean-with.html

Your MDB works as JMS consumer in your case. MDB is EJB specific term and consumer is a JMS term. A JMS consumer can be a message driven POJO as well which is not technically an EJB.

Answers to comments

A1. Yes it is correct to say that a plain JMS consumer cannot be pooled/managed like an EJB unless that JMS consumer happens to be managed by containers like EJB or Spring containers.

A2. MDBs really just fulfills the requirement for asynchronous communication with EJBs. When they are JMS based then your MDB is technically a JMS Consumer as well. But an MDB can be non-JMS based as well eg: JCA (Java Connector Architecture) based MDB. You can see this post for more details about non-JMS based MDB: http://debupanda.blogspot.com/2006/08/using-ejb-30-message-driven-bean-with.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文