JavaEE 6:@EJB(beanInterface =“”)

发布于 2024-12-08 00:59:21 字数 660 浏览 0 评论 0原文

有人可以帮助我理解 JavaEE 6 中 @EJB 注释的 beanInterface 参数的使用吗?

我有一个情况,我有一个 EJB,并且我希望它也可以在本地和远程访问。

我有一个 MyBaseInterface,然后还有 MyEJBLocalInterfaceMyEJBRemoteInterface 扩展 MyBaseInterface。现在我有了 MyEJB,它同时实现了 MyEJBLocalInterfaceMyEJBRemoteInterface

现在,我只想在本地访问 MyEJB

我可以通过以下方法达到同样的效果吗?

@EJB(beanInterface=MyEJBLocalInterface.class)
private MyBaseInterface instanceOfLocallyAccessedMyEJB;

有人可以帮助我理解 @EJB 属性的 beanInterface 参数的使用吗?

谢谢。

Could someone help me understand the use of beanInterface parameter of @EJB annotation in JavaEE 6?

I have a situation in which I have an EJB and I want it to be accessed locally and remotely as well.

I have a MyBaseInterface and then both MyEJBLocalInterface and MyEJBRemoteInterface extending MyBaseInterface. Now I have MyEJB which is implementing both MyEJBLocalInterface and MyEJBRemoteInterface.

Now I have a situation in which I want only to access MyEJB locally.

Could I achieve the same with the following?

@EJB(beanInterface=MyEJBLocalInterface.class)
private MyBaseInterface instanceOfLocallyAccessedMyEJB;

Could someone help me understand the use of beanInterface parameter of @EJB attribute?

Thanks.

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

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

发布评论

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

评论(1

走走停停 2024-12-15 00:59:21

@EJB 注释的 beanInterface 属性根据您使用的 EJB 版本用于不同的目的:

  • 在 EJB 3.X 中,您可以使用它来指定是否要使用您所引用的 EJB 的远程或本地引用,这就是你的情况。
  • 在EJB 2.X中,它用于指定会话/实体bean的Home/LocalHome接口

综上所述,是的。您应该能够使用它来注入所需的接口。

不过,旧版本的 JBoss 可能不支持此功能。

the beanInterface attribute of the @EJB annotation is used for different purposes depending on the EJB version you are using:

  • In EJB 3.X you can use it to specify whether you want to use the remote of local reference of the EJB you are referring to, which is your case.
  • In EJB 2.X it is used to specify the Home/LocalHome interface of the session/entity bean

To sum up, yes. You should be able to use it to inject the desired interface.

This might not be supported in older versions of JBoss though.

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