JSF2 SessionBean 在页面访问之前初始化
我们使用 JSF2 和 Tomcat6。在用户访问第一页之前,我们需要使用后端值初始化会话 bean。我可以知道该怎么做吗?
We are using JSF2 and Tomcat6. We need to initialize a session bean with backend values before the user access the first page. May I know how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只想从页面访问通用的会话范围数据,您可以
If you just want to access common, session scoped data, from a page, you could
你问的严格来说是不可能的。一旦用户发出第一个请求,就会创建会话。通常,您不能提前为从未请求服务器上任何页面的用户创建会话。
从页面引用的任何会话作用域 bean 将在第一次调用该页面期间初始化,并且仅在第一次调用期间初始化。这是你能得到的最好的。
(如果您实际上指的是 SessionBean 而不是会话范围的托管 bean,那么情况会有所不同。由于您没有在问题中使用 EJB 标记,我认为是后者。)
What you ask is strictly spoken not possible. A session is created exactly once a user does his first request. You can in general not create sessions in advance for users that have never requested any page on your server.
Any session scoped bean that is referenced from a page will be initialized during the first call to that page, and only during that first call. This is the best you can get.
(If you actually mean a SessionBean and not a session scoped managed bean, then things are a little different. As you haven't used the EJB tag on your question I suppose it's the latter.)