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?
Asked
Active
Viewed 371 times
2

user207421
- 305,947
- 44
- 307
- 483

Victor2748
- 4,149
- 13
- 52
- 89
-
I think, these tags has association with the question and makes question better searchable – jmj Jan 06 '15 at 04:23
1 Answers
5
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