MDB:动态选择器

发布于 2024-11-27 08:10:50 字数 211 浏览 0 评论 0原文

我有几个服务器运行相同的代码,但每个服务器都处理特定的消息(它们按地理区域传播,并且必须处理与其区域相关的所有消息)

我认为使用单个队列和消息选择器来过滤不同的消息。

问题是:如何编写 Java 代码和部署计划,以便根据配置文件、应用程序服务器的配置(Geronimo 2.2)动态配置选择器。

目标是在所有服务器上部署相同的 EAR。

谢谢。

I have several servers running the same code but each handling specific messages (they are spread by geographical area and must should treat all messages related to their area)

I thought to use a single queue and a message selector to filter the different message.

The question is: how to write Java code and deployment plan so that the selector is configured dynamically, based on a config file, the config of application server ( Geronimo 2.2)

The goal is to have the same EAR deployed on all servers.

Thank you.

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

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

发布评论

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

评论(1

素手挽清风 2024-12-04 08:10:50

对于您想要实现的目标,Java 代码不需要不同,而是部署计划应该从一台服务器更改为另一台服务器。

要在所有服务器上部署相同的 EAR,我会这样处理:

  1. 为您想要的每个 MDB 配置编写不同的 openejb-jar.xml — 每个 MDB 配置都具有相同的 MDB (已定义,但具有不同的消息选择器。
  2. 将每个 openejb-jar.xml 直接放在 EAR 文件内的单独目录中。
  3. 使用外部提供的 geronimo-application.xml 来部署 EAR,该 geronimo-application.xml 引用带有 元素的特定配置:
<module>
   <ejb>your_MDB.jar</ejb>
   <alt-dd>config1/openejb-jar.xml</alt-dd>
</module>

For what you want to achieve, Java code does not need to be different, it's the deployment plan that should change from one server to the other.

To have the same EAR deployed on all servers, I'd approach it like this:

  1. Write a different openejb-jar.xml for every MDB configuration you want — each would have the same MDB (<enterprise-beans><message-driven> defined, but with different message selectors.
  2. Put each openejb-jar.xml in a separate directory directly inside the EAR file.
  3. Deploy the EAR with externally supplied geronimo-application.xml referring to a particular configuration with <alt-dd> element:
<module>
   <ejb>your_MDB.jar</ejb>
   <alt-dd>config1/openejb-jar.xml</alt-dd>
</module>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文