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

I haven't ever before created custom components in JSF so I've noticed only now that methods like encodeBegin(), encodeEnd() etc accept FacesContext parameter.

FacesContext instance can usually be received with FacesContext.getCurrentInstance().

So, I wonder whether these methods have FacesContext parameter just for convenience or some different objects can be passed there (maybe from external resources..). If the latter is possible then could you give an example pls.

share|improve this question

1 Answer

up vote 3 down vote accepted

They may happen to run in a different thread. FacesContext#getCurrentIsntance() can only for sure be returned from the thread which is executed by the HTTP request since it's stored as a ThreadLocal variable.

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.