I'm using Apache Tomcat 7.0 Servlet Container. I've been trying to look at the request handling in JavaServer Faces. I can see the following chunk of config in the web.xml :
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
I've looked at the source of the Faces Servlet, but I haven't found doGet
method inside. I thought doGet method is one of the principal method to handle HTTP GET
request in the Java Servlets. So who exact handles incoming GET
request in JSF? I would like to look at the method, which do that.