Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does view scope bean survive Navigation JSF

Tags:

jsf

jsf-2

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?

like image 391
Necronet Avatar asked Jan 28 '11 18:01

Necronet


2 Answers

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 rendered attributes or as model for h:dataTable or as hidden inputs, etcetera. In the past, a lot of hacks were been used to go around this.

A view scoped bean lives as long as you interact with the same view (i.e. you return void or null in bean action method). When you navigate away to another view, e.g. by clicking a link or by returning a different action outcome, then the view scoped bean will be trashed by end of render response and not be available in the next request.

See also:

  • Benefits and pitfalls of @ViewScoped
  • Any disadvantages of JSF 2.0?
like image 103
BalusC Avatar answered Nov 10 '22 03:11

BalusC


Ripped straight from Core JavaServer Faces, 3rd Edition:

View Scope

View scope was added in JSF 2.0. A bean in view scope persists while the same JSF page is redisplayed. (The JSF specification uses the term view for a JSF page.) As soon as the user navigates to a different page, the bean goes out of scope.
If you have a page that keeps getting redisplayed, then you can put the beans that hold the data for this page into view scope, thereby reducing the size of the session scope. This is particularly useful for Ajax applications.

like image 9
Matt Ball Avatar answered Nov 10 '22 02:11

Matt Ball