Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

up vote 18 down vote accepted

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:

share|improve this answer
great thanks Balus for answering i know why my freaking beans are reinstanciated my beans.... thanks!! – Necronet Jan 28 '11 at 19:30
@BalusC: Is there a time limit as to when the viewscoped bean will be destroyed if there is no interaction from the client side for a long time ? – user01 Aug 7 '11 at 16:44
& another thing, if the user navigates to a link in another tab by clicking a link from current tab, keeping the current tab as well active, the ViewScoped bean will be destroyed right ? – user01 Aug 7 '11 at 16:50
@Raj: No. It will just create another one. – BalusC Aug 8 '11 at 11:55
thanks and also if you could comment on my previous comment as well.. thanks ! – user01 Aug 9 '11 at 17:36
show 7 more comments

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.