| 1600 PMP mock questions | 1400 CAPM mock questions | 800 SCJP 6 mock questions | 600 OCAJP 7 mock questions | 590 OCPJP 7 mock questions | 556 SCWCD 5 mock questions | 500 OCEJWCD 6 mock questions | pdfDownload (java,struts, hibernet etc) | JobsJobs and Walkins |
|
Java online test
JSP online test ORACLE online test Hibernate online test Servlet online test Struts online test EJB online test C online test C++ online test Aptitude online test |
Q.When a client request is sent to the servlet container, how does the container choose which servlet to invoke? |
|
|
The servlet container determines which servlet to invoke based on the configuration of its servlets, and calls it with objects representing the request and response.
For Example--- <servlet> <servlet-name>admin</servlet-name> <servlet-class>com.servlet.LoginServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name> admin </servlet-name> <url-pattern> /artadmin </url-pattern> </servlet-mapping> if the url in browser is http://localhost:8080/artadmin then server will call LoginServlet. Based on the above mapping. |
Suggested JobsMore Jobs >> |
|
Online Practice TestJava online testJSP online test ORACLE online test Hibernate online test Servlet online test Struts online test EJB online test C online test C++ online test Aptitude online test |