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

Does the FacesServlet in JSF 2.0 support the servlet 3.0 async features?

share|improve this question
SOLVED: I refer you to this post: stackoverflow.com/questions/7855712/… – Given Nov 28 '12 at 11:57

1 Answer

up vote 1 down vote accepted

No, with the simple reason that JSF 2.0 is designed with Servlet 2.5 in mind.

JSF 2.1 in turn is however designed with Servlet 3.0 in mind, but it does not utilize the new async features, perhaps with the simple reason being that there's just no need for it. The closest what you can get is ajax poll/push provided by 3rd party component libraries like RichFaces, PrimeFaces or IceFaces.

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.