I finished learning JSPs/Servlets, and now starting to learn the JSF framework. As I was learning it, I started to wonder: is JSF 2.0 build based on servlets? When a request comes to a .xhtml page, is it handled by (one of the) core-framework servlets, or is it built on an even lower-level technology, and originally handled by the Webserver itself?
- I think, these tags has association with the question and makes question better searchableJigar Joshi– Jigar Joshi2015-01-06 04:23:30 +00:00Commented Jan 6, 2015 at 4:23
Add a comment |
1 Answer
It is built on top of Servlet, main controller servlet is called FacesServlet, This servlet loads your faces-config.xml file and other configuration while initialization