Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I noticed that there are different bean scopes like:

@RequestScoped
@ViewScoped
@SessionScoped
@ApplicationScoped

What is the purpose of each? How do I choose a proper scope for my bean?

share|improve this question
1  
courses.coreservlets.com/Course-Materials/pdf/jsf/jsf2/… there is a description on page 6 – Jacob Aug 11 '11 at 19:52
4  
@zod - None of those links explain this in detail. Do you understand the question anyway? – BalusC Aug 11 '11 at 19:54
   
@BalusC,sorry for the trouble mate, I didn't mean cause any trouble, sorry. – Valter Henrique Aug 11 '11 at 20:08

1 Answer

up vote 62 down vote accepted

It represents the scope (the lifetime) of the bean. A request scoped bean lives as long as a single HTTP request-response cycle. A view scoped bean lives as long as you're interacting with the same JSF view. A session scoped bean lives as long as the established HTTP session. An application scoped bean lives as long as the web application runs.

Which scope to choose depends solely on the data (the state) the bean holds and represents. Use the request scope for simple and non-ajax forms/presentations. Use the view scope for rich ajax-enabled dynamic views (ajaxbased validation, rendering, etc). Use the session scope for client specific data, such as the logged-in user and user preferences (language, etc). Use the application scope for application wide data/constants, such as dropdown lists which are the same for everyone.

Abusing an application scoped bean for session/view/request scoped data would make it to be shared among all users, so anyone else can see each other's data which is just plain wrong. Abusing a session scoped bean for view/request scoped data would make it to be shared among all tabs/windows in a single browser session, so the enduser may experience inconsitenties when interacting with every view after switching between tabs which is bad for user experience.

Note that the scope should rather not be chosen based on performance implications, unless you really have a low memory footprint and want to go completely stateless; you'd need to use exclusively request scoped beans and fiddle with request parameters to maintain the client's state.

See also:

share|improve this answer
1  
thanks by the help. – Valter Henrique Aug 11 '11 at 20:09
Wow! Fantastic Answer! It solved my problems too. Thumb Up! :-D – Chris Mar 21 at 8:56

protected by BalusC Dec 22 '12 at 15:29

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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