Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以解释 JSF 中的部分状态保存功能吗?我使用过 JSF 1.2,但那里不存在此功能。我认为它是 JSF 2.0 的新功能?与常规状态储蓄相比,我们通过部分状态储蓄获得什么好处?
它通过只保存对 bean 的修改来减少内存使用。默认为 true,您可以在 conf 中设置它,如下所示;
<context-param> <param-name>javax.faces.PARTIAL_STATE_SAVING</param-name> <param-value>false</param-value> </context-param>