将托管 bean 转变为 EJB
是否有可能将托管 Bean 转变为企业托管 Bean?你能举一些例子吗?
Is it possible to turn a Managed bean into an Enterprise Managed Bean? Would you give some example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要将 POJO bean 类转换为 EJB,请添加
@Stateful
注释的@Stateless
并实现@Remote
或@Local
(或两者)接口。当然,一些额外的配置步骤是必要的,但这取决于您正在使用的特定应用程序服务器。沿着这些思路做一些事情:
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:
如果您有一个想要使用 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.