CDI 可以注入我的 Bean 的远程实例吗?

发布于 2024-11-16 00:25:50 字数 215 浏览 3 评论 0原文

CDI 可以在我的远程 EJB 客户端中注入 EJB 引用吗?

实际上,我有一个 JUnit 测试用例,它在我的系统上本地运行,并访问在独立 JBoss AS 上运行的 EJB。我目前正在使用 JNDI 访问 bean 的远程业务接口并对其进行测试。

我想知道,@Inject 是否可以帮助我将 EJB 实例直接注入到我的测试用例中,以便我可以避免 JNDI 查找并仍然访问 EJB?

Can CDI inject EJB references in my remote EJB client?

Actually I've a JUnit test case that runs locally on my system and access a EJB running on a standalone JBoss AS. I'm currently using JNDI to access remote business interface of the bean and testing the same.

I would like to know, If @Inject can help me here injecting my EJB instance directly to my test case so that I could avoid JNDI lookups and still access the EJB?

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

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

发布评论

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

评论(1

愿与i 2024-11-23 00:25:50

不便于携带。来自 CDI 规范:

不受限制的 Bean 类型集
一个会话bean包含所有本地
bean 及其接口
超级接口。如果会话 bean
有一个 bean 类局部视图,
不受限制的 Bean 类型集
包含 bean 类和所有
超类。此外,
java.lang.Object 是一个 bean 类型
每个会话 bean。

远程接口不包含在
bean 类型集。

Not portably. From the CDI specification:

The unrestricted set of bean types for
a session bean contains all local
interfaces of the bean and their
superinterfaces. If the session bean
has a bean class local view, the
unrestricted set of bean types
contains the bean class and all
superclasses. In addition,
java.lang.Object is a bean type of
every session bean.

Remote interfaces are not included in
the set of bean types.

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