我如何在 Bean 中获取 SessionScope 对象
我搜索一种如何访问会话范围中的类的方法。
我有这个类:
@ManagedBean
@SessionScoped
public class UserManagerBean implements Serializable{...}
我将从另一个 bean 访问一些字段。我该怎么做?
谢谢
i search a way how i can access a class in the sessionscope.
I have this class:
@ManagedBean
@SessionScoped
public class UserManagerBean implements Serializable{...}
and i will access some fields from a other bean. How can i do this?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过将该 bean 作为另一个 bean 的
@ManagedProperty
来实现这一点,然后将其作为操作方法中的常用属性进行访问。它将在构造之后直接设置,因此它在构造函数中不可用。如果您想要执行一些依赖于其可用性的初始化操作,请使用
@PostConstruct
:You can do that by taking the bean as a
@ManagedProperty
of the other bean and then just access it as an usual property in the action methods.It will be set directly after construction, so it wouldn't be available in the constructor. If you'd like to do some init stuff which relies on its availablility, then make use of
@PostConstruct
: