WAS 7.0 - MDB 中的默认拦截器
我在使用 Websphere 7.0 AS 中的默认拦截器建议 MDB 时遇到问题。我已经使用 Glassfish AS 测试了相同的代码,并且运行良好。奇怪的是WAS拦截器适用于无状态bean,但不适用于MDB。
<assembly-descriptor>
<interceptor-binding>
<ejb-name>*</ejb-name>
<interceptor-class>jms.service.interceptor.IncomingJMSMessageLogInterceptor</interceptor-class>
</interceptor-binding>
</assembly-descriptor>
I'm having problems advising MDBs with default interceptors in Websphere 7.0 AS. I have tested the same code using Glassfish AS and it works fine. The strange thing is that WAS interceptor is applied for stateless beans but not for MDB.
<assembly-descriptor>
<interceptor-binding>
<ejb-name>*</ejb-name>
<interceptor-class>jms.service.interceptor.IncomingJMSMessageLogInterceptor</interceptor-class>
</interceptor-binding>
</assembly-descriptor>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅使用 JCA 消息端点(而不是侦听器端口)的 MDB 支持拦截器。
已针对此问题打开 APAR PM53989。
Interceptors are only supported for MDBs using JCA message endpoints, not listener ports.
APAR PM53989 has been opened for this problem.