我有一个实现 Serializable
的 View 范围的 bean,以及一个通过绑定(bind)传入的 UIComponent
。
@ManagedBean
@ViewScoped
public class ViewScopedBean implements Serializable {
UIComponent form;
/// ...
}
<h:form binding="#{viewScopedBean.form}"> ...
UIComponent
不可序列化,因此会破坏 session 恢复。这里的最佳做法是什么?
我应该将 UIComponents 标记为
transient
吗?或者将 binding= 用于请求范围的 bean 之外的任何东西是不好的做法吗?我使用的是 Glassfish 3.1.1、Mojarra 2.1.3 和 PrimeFaces 2.2。
最佳答案
接受@BalusC 的建议,寻找另一种无需绑定(bind)即可解决问题的方法。
关于JSF UIComponent 绑定(bind)、可序列化和 View 范围,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8392236/