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

how to use FacesContext in JSF? please give me one whole example ? and some explantion when and at what condition we need to use this?

share|improve this question
5  
Don't use it just because you must do. Only use it whenever you need it. You will encounter the need automagically yourself sooner or later. – BalusC Aug 13 '10 at 12:01

1 Answer

up vote 7 down vote accepted

FacesContext gives you access to multiple useful contexts and objects, like:

  • the Application object, containing application-related 'settings'
  • the external context, which is in most cases the ServletContext
  • Various JSF UI objects, like the render kit, the UIViewRoot

You obtain it via FacesContext.getCurrentInstance(). After that - check the docs to see what can be of particular interest to you.

The FacesContext is initialized per each request, and getCurrentInstance() actually returns a ThreadLocal variable.

It is to be noted, that a simple application should be able to work without the need to access the FacesContext.

share|improve this answer
Thanks Bozho!!!! – vinod Aug 16 '10 at 5:22
@vinod np. If an answer works for you, you can mark it as accepted (tick below the vote counter) – Bozho Aug 16 '10 at 6:14

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.