将资源注入无状态本地 EJB

发布于 2024-11-28 20:11:41 字数 252 浏览 0 评论 0原文

我有一个带有 @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 技术交流群。

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

发布评论

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

评论(1

你与清晨阳光 2024-12-05 20:11:41

尽管这个特定问题可能不再相关,但根本问题及其解决方案可能对其他人有价值。在大多数情况下,问题是由于实例化实现 bean 的新对象而不是使用代理接口而引起的,例如:

ObjectBean obj = new ObjectBean();

这不会触发 CDI,因此所有带注释的资源将为 null。使用接口而不是通过 JNDI 或带注释的资源查找将解决该问题:

ObjectBeanInterface obj = new InitialContext().lookup("java:module/ObjectBean!org.mycompany.ObjectBeanInterface");

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:

ObjectBean obj = new ObjectBean();

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:

ObjectBeanInterface obj = new InitialContext().lookup("java:module/ObjectBean!org.mycompany.ObjectBeanInterface");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文