将托管 bean 转变为 EJB

发布于 2025-01-02 20:02:19 字数 43 浏览 0 评论 0原文

是否有可能将托管 Bean 转变为企业托管 Bean?你能举一些例子吗?

Is it possible to turn a Managed bean into an Enterprise Managed Bean? Would you give some example?

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

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

发布评论

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

评论(2

单身情人 2025-01-09 20:02:19

要将 POJO bean 类转换为 EJB,请添加 @Stateful 注释的 @Stateless 并实现 @Remote@Local(或两者)接口。当然,一些额外的配置步骤是必要的,但这取决于您正在使用的特定应用程序服务器。

沿着这些思路做一些事情:

@Local
public interface ServiceLocal {
}

@Remote
public interface ServiceRemote {
}

@Stateless
public class ServiceEJB implements ServiceLocal, ServiceRemote {
}

For turning a POJO bean class into an EJB, add the @Stateless of @Stateful annotation and implement the @Remote or @Local (or both) interfaces. Of course some additional configuration steps will be necessary, but that depends on the particular application server you're using.

Do something along these lines:

@Local
public interface ServiceLocal {
}

@Remote
public interface ServiceRemote {
}

@Stateless
public class ServiceEJB implements ServiceLocal, ServiceRemote {
}
时光倒影 2025-01-09 20:02:19

如果您有一个想要使用 EJB 作为支持 bean 的有效场景,那么您可以做到。 JBoss Seam 会在这方面为您提供帮助。查看了解更多信息。

If you have a valid scenario where you want to use an EJB as your backing bean, then yes you can do it. JBoss Seam would help you in this. Check out this for more information.

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