为什么只有一个有状态会话 Bean?
我尝试了以下有状态会话 bean 的示例 http://www.roseindia.net/ ejb/example-of-statelfulbean.shtml,但是当我使用两个浏览器时,我只能得到相同的会话 bean。
我认为每个连接/客户端都有一个会话 bean。怎么了?
我使用 JBoss 5.0.1 AS 进行测试和部署。
感谢您的任何建议。
I tried following example for a stateful session bean http://www.roseindia.net/ejb/example-of-statelfulbean.shtml, but when I use two browsers I only get the same session bean.
I thought there is a session bean for each connection/client. What is wrong?
I use the JBoss 5.0.1 AS for testing and deploying.
Thanks for any advices.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是我在 servlet 中获取了一次会话 bean,但我必须为每个会话获取它并将其存储在会话数据中。
The problem was that I got the session bean in the servlet once, but I have to get it for each session and store it in the session data.