EJB @无状态 + Seam @Scope(ScopeType.CONVERSATION) = @Stateful?
我是一名新的 SEAM 开发人员,并且我确实很喜欢这个平台。
我想知道无状态会话 bean 和会话范围是否与有状态会话 bean 具有相同的语义?
在这种情况下,EJB 客户端就是接缝,对吧?因此,使用会话范围,客户端(seam 组件)使用的 ejb bean 在会话期间将是相同的,这样状态将被保留,直到会话结束。
这是正确的吗?
Im a new SEAM developer and for sure im really enjoying the platform.
im wondering wether a stateless session bean plus conversation scope has the same semantic by stateful session bean ?
the EJB Client in this context is the seam, right ? so using conversation scope, the ejb bean used by the client ( seam component ) will be the same during the conversation, this way the state will be preserved until the conversation finish.
is it correct ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为无状态会话bean始终处于无状态范围,无法设置为对话范围。
I think Stateless session bean is always in Stateless scope, no way to set to Conversation scope.
不会。无状态会话 Bean 始终存在于无状态上下文中。
No. Stateless session beans always live in the stateless context.