java - doGet Method of the Faces Servlet -


i'm using apache tomcat 7.0 servlet container. i've been trying @ request handling in javaserver faces. can see following chunk of config in 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 @ source of faces servlet, haven't found doget method inside. thought doget method 1 of principal method handle http get request in java servlets. exact handles incoming get request in jsf? @ method, that.

facesservlet doesn't extend httpservlet class containing a.o. doget(). implements servlet interface offers base service() method. look here.

jsf designed compatible both servlets , portlets. portlets doesn't use httpservlet, portletservlet shares common servlet interface.


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -