JSF 2:可以在会话启动时初始化会话范围的 bean 吗?
JSF 2 中是否可以在加载会话上下文后立即初始化会话范围的托管 bean?我知道可以使用应用程序范围的 bean 和 @ManagedBean 注释中的 eager 属性,但是会话 bean 是否存在类似的东西?我有一个会话范围的 bean,无论是否访问特定页面,我都希望加载它。
Is it possible in JSF 2 to initialize a session-scoped managed bean as soon as the session context is loaded? I know it's possible with Application Scoped beans and the eager
attribute in the @ManagedBean
annotation, but does something similar exist for session beans? I have a session-scoped bean that I want to have loaded regardless of if a specific page is visited.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你确定你需要一颗豆子吗?如果是一些常规初始化内容,您可以使用
HttpSessionListener
,并在sessionCreated(..)
上初始化。Are you sure you need a bean? If it is some general initialization stuff, you can use a
HttpSessionListener
, and onsessionCreated(..)
initialize things.