how a servlet is instantiated, whether the container calls
init() or by calling any other method? please somebody reply..

Answer Posted / nishidh soni

Servlet is initialized by two ways...

1)By initializing the constructor:-but in the initial version of JDK 1.0 constructor can not be initialized for the dynamic page loading so that init() method for the servlet comes into the picture.

2)By invoking the init() method:-This init() method is invoked by the servlet container at it is invoked once per servlet and it uses the ServletConfig as a object for the initialized parameter.and the it is like
init(ServletConfig config)
{
.....
}

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What's the use of servletcontext?

686


Why doesn’t a servlet include main()? How does it work?

633


What is a cookie What is the difference between session and cookie

599


How to read request headers from servlets?

568


What is generic servlet class?

606






How can we upload the file to the server using servlet?

548


How servlet is created?

548


What are the phases of the servlet life cycle?

614


What is servlet container. how it works?

617


Define the lifecycle for executing a jsp page.

597


How can you use a servlet to generate a plain text instead of html?

599


What is servlet? Explain

584


What is servlet name in web xml?

562


Describe the phases of servlet lifecycle?

634


What are the functions of the servlet container?

1039