How do I short circuit the jsf lifecycle so that the response is rendered before any model updates? In the diagram of page 59 of this document JSF Spec V1.2 RevB, it shows that you can skip from the "Apply Request Values" phase directly to the "Render Response" phase. How do I do this? I've got a PhaseListener hooked in, but not sure if I can use it to do this or not. Thanks, Ben Anderson

link|improve this question

72% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Call the renderResponse method on the context.

FacesContext.getCurrentInstance().renderResponse();

The lifecycle will skip to the response as soon as the current phase ends.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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