I am quite confused with the view scope. I thought it could survive a JSF navigation to another page (no redirect, obviously), but it doesn't. So what's the advantage to use it instead of request scope, that if i summoned the same view it will be the same object?
|
|
|
The advantage is that the bean survives postbacks to the same view. You don't need to preserve any data yourself anymore when used in A view scoped bean lives as long as you interact with the same view (i.e. you return See also: |
|||||||||||
|
|
Ripped straight from Core JavaServer Faces, 3rd Edition:
|
|||
|
|