what is the control flow in servlet when we send a request?
Answer Posted / lucky
Servlet: is used to create web tech,its based component to create web app ,its a server side component, its a java obj which implements directly or indirectly implemented by Servlet interface , its a singleton obj and multithreaded model and security, its an interface having abstract methods init , service ,destroy, config , info and these inti ,service , destroy are life cycle method, remain are programmer initialized ,whn user send a req to peticular serlet req reach to server thne server jvm check url pattern in deployment descriptor file then it find url server take url and check with the corresponding servlet if its finds that servlet then server jvm wil create servlet obj then it will cal life cycle methods and son ........................
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the mechanisms used by a servlet container for maintaining session information?
How to get the server information in a servlet?
What are the types of protocols supported by httpservlet ?
How the typical servlet code look like ?
What is the advantage of Servlets when compared with other server side technologies?
What is servlet lazy loading?
What do you mean by servlet?
How do I support both get and post from the same servlet?
Why don't we write a constructor in a servlet?
Is java servlet still used?
What does the term localization refer to?
How can you start a jta transaction from a servlet deployed on jboss?
What is difference between ServletResponse sendRedirect() and RequestDispatcher forward() method?
What is the difference between the include() and forward() methods?
What is webservlet?