将资源注入无状态本地 EJB
我有一个带有 @Stateless 实现的 @Local 接口。
实现上是一个 @Resource(mappedName="java:/XXMail") javax.mail.Session。
虽然它仍然为 null 并且没有被注入,但通过 InitialContext 进行 JNDI 查找工作正常。
我可以检查什么或如何调试它有什么想法吗?我们几个人已经为此倾注了一段时间,但没有任何运气。抱歉,我无法发布代码本身,因为它位于封闭网络上。
I have an @Local interface with an @Stateless implementation.
On the implementation is an @Resource(mappedName="java:/XXMail") javax.mail.Session.
It remains null though and isn't injected, but a JNDI lookup via an InitialContext works fine.
Any ideas what I can check or how I can debug this? Several of us have poured over this for a while without any luck. Apologies, I can't post code itself as it's on a closed network.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尽管这个特定问题可能不再相关,但根本问题及其解决方案可能对其他人有价值。在大多数情况下,问题是由于实例化实现 bean 的新对象而不是使用代理接口而引起的,例如:
这不会触发 CDI,因此所有带注释的资源将为 null。使用接口而不是通过 JNDI 或带注释的资源查找将解决该问题:
Although this certain issue might not be relevant any longer, the root problem and its solution may be valuable for others. In most cases the problem is caused by instantiating a new object of the implementating bean instead of using the proxy interface, like:
This will not trigger CDI and therfore all annotated resources will be null. Using the interface instead by looking up via JNDI or annotated resource will resolve the issue: