Friday, December 4, 2015

Servlet Life Cycle perfect steps

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.

1. If an instance of the servlet does not exist, the web container
a. Loads the servlet class.
b. Creates an instance of the servlet class.
c. Initializes the servlet instance by calling the init method. Initialization
is covered in Initializing a Servlet (page 456).

2. Invokes the service method, passing request and response objects. Service
methods are discussed in Writing Service Methods (page 457).
If the container needs to remove the servlet, it finalizes the servlet by calling the
servlet’s destroy method.

No comments:

Post a Comment