如何在 JBoss 6 中配置消息驱动 Bean 的池大小?

发布于 2024-12-26 09:49:17 字数 135 浏览 1 评论 0原文

我想在我的 java ee 应用程序中为我的消息消费者配置更大的池大小,因为消息的消费需要一些时间(主要是等待)。

我该怎么做? 我更喜欢使用注释的解决方案。

此任务是否依赖于所使用的资源适配器? (我的是activeMQ)

I want to configure a bigger pool size for my message consumer in my java ee application, as the consumption of a message requires some time (mostly waiting).

How can i do this?
I would prefer a solution that uses annotation.

Is this task dependant on the used resource adapter? (mine is activeMQ)

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

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

发布评论

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

评论(1

送你一个梦 2025-01-02 09:49:17

看来 jboss 本身并不处理 mdb 池大小。 jms 代理的资源适配器实现可以做到这一点。

对于 activemq,激活配置属性是“maxSessions”
对于hornetq(默认),该属性似乎是“MaxPoolSize”,

我发现的另一个建议是更改ejb3-interceptors-aop.xml中的这一部分,

<annotation expr="!class(@org.jboss.ejb3.annotation.Pool)">
    @org.jboss.ejb3.annotation.Pool (value="StrictMaxPool", maxSize=15, timeout=10000)
</annotation>

尽管这适用于每个mdb(并且@Pool注释对我的mdb没有影响) )

it seems like the jboss doesn't handle the mdb pool size by itself. The resourceadapter implementation of your jms broker does that.

For activemq the activeation-config-property is "maxSessions"
for hornetq (default) the property seems to be "MaxPoolSize"

another suggestion i found is to change this section in ejb3-interceptors-aop.xml

<annotation expr="!class(@org.jboss.ejb3.annotation.Pool)">
    @org.jboss.ejb3.annotation.Pool (value="StrictMaxPool", maxSize=15, timeout=10000)
</annotation>

although this would apply to every mdb (and also the @Pool annotation had no effect on my mdbs)

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