I'm trying to better understand the low-level workings of a @ViewScoped bean in JSF 2. Where does the server keep the view-scoped bean between requests? I've noticed that my view-scoped beans need to implement Serializable, so they must get serialized to some location.
Can anyone explain this or provide a link to documentation that explains it?
I'm asking the question because I may have introduced a scope-related defect into my webapp. Understanding how @ViewScoped works will help me rule out some of the potential causes.