Java Servlet Technology
Java Servlet technology provides Web developers with a simple, consistent mechanism for extending the functionality of a Web server and for accessing existing business systems. A servlet can almost be thought of as an applet that runs on the server side--without a face. Java servlets make many Web applications possible.
what is servlets?
A servlet is a Java programming language class used to extend the capabilities of servers that host applications accessed via a request-response programming model. Although servlets can respond to any type of request, they are commonly used to extend the applications hosted by Web servers. For such applications, Java Servlet technology defines HTTP-specific servlet classes.
The javax.servlet
and javax.servlet.http
packages provide interfaces and classes for writing servlets. All servlets must implement the Servlet
interface, which defines life-cycle methods.
When implementing a generic service, you can use or extend the GenericServlet
class provided with the Java Servlet API. The HttpServlet
class provides methods, such as doGet
and doPost
, for handling HTTP-specific services.
Servlet Life Cycle?
The life cycle of a servlet is controlled by the container in which the servlet has been deployed. When a request is mapped to a servlet, the container performs the following steps.
- If an instance of the servlet does not exist, the Web container
- Loads the servlet class.
- Creates an instance of the servlet class.
- Initializes the servlet instance by calling the
init
method. Initialization is covered in Initializing a Servlet. - Invokes the
service
method, passing a request and response object. Service methods are discussed in the section Writing Service Methods.
If the container needs to remove the servlet, it finalizes the servlet by calling the servlet's destroy
method. Finalization is discussed in Finalizing a Servlet.