Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Life Cycle of servlets?

Answer Posted / shakir khan

javax.servlet.Servlet interface defines 3 methods known as
life cycle.
Servlet intialisation takesplace every first time,it
receives a request and remains in memory till times out or
server shutdown

When first request came in for a servlet,servlet invoke
init() only once.

public void init(ServletConfig config)
{
}
Thereafter if any user wants requet,it will directly
executes the service().

public void service(ServletRequest req,ServletResponse res)
throws servletException,IOException
{
}
When server wants to remove the servlet from pool ,it will
executes the destroy().

public void destroy()
{
}

Is This Answer Correct ?    14 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What mechanisms are used by a Servlet Container to maintain session information?

1218


What is called servlet mapping?

1155


What is dispatcher servlet?

1112


What is the use of servlet wrapper classes?

1242


Which java framework is most popular?

1218


How do you load an image in a Servlet?

1236


What is ServletConfig object?

1251


What is cgi and what are its drawbacks?

1152


what do you understand by url rewriting?

1011


What are the types of servlets? Explain

1330


Explain web container.

1085


What is the functionality of actionservlet and requestprocessor?

1144


How can we perform any action at the time of deploying the project?

1167


What is the major difference between context parameter and context attribute?

1168


Write a program to show the functionality of servlets.

1062