如何在 JBoss 6 中配置消息驱动 Bean 的池大小?
我想在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来 jboss 本身并不处理 mdb 池大小。 jms 代理的资源适配器实现可以做到这一点。
对于 activemq,激活配置属性是“maxSessions”
对于hornetq(默认),该属性似乎是“MaxPoolSize”,
我发现的另一个建议是更改ejb3-interceptors-aop.xml中的这一部分,
尽管这适用于每个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
although this would apply to every mdb (and also the @Pool annotation had no effect on my mdbs)