|
|
|
Servlets
|
Servlet Life Cycle
The Life Cycle of Servlet having some good characteristics that allows servlet to address both performance and resource problems of CGI along-with security pertains of low-level Server API programming. The life cycle of a servlet is operated by the container in which the servlet has been deployed. Servlet life cycle is categorized into 4 parts i.e. Instantiation, Initialization, Servicing the Request/Implementation & Destruction.
View Rating |
|
|
Servlets
|
Servlet: What is it
What is Servlet? The Servlet is a class that is written in Java programming language and is used to provide a mechanism for developing server side programs. It interacts with clients via request-response programming model. Servlet enhance the web servers by extending the applications hosted by it. For such applications, Java Servlet technology defines HTTP-specific servlet classes.
View Rating |
|
|