Which method the Servlet container call to create the
instance of the servlet?
Answer Posted / sunil
servlet container calls the init() method to create the
instance of the servlet.
The instance is created for the servlet in which the init()
method is implemented.
Is This Answer Correct ? | 6 Yes | 6 No |
Post New Answer View All Answers
What are the functions of Servlet container?
What do you mean by filter in servlet?
What is the difference between 2 types of servlets?
What are different methods of session management in servlets?
Explain the working of service() method of a servlet.
How can I send user authentication information while making URL Connection?
List out the difference between ServletConfig and ServletContext?
How do you create a cookie using servlet?
Is tomcat a servlet container?
How can we upload the file to the server using servlet?
Explain the difference between a web server and a web container?
What do you mean by deployment descriptor?
What is cookie in servlet?
Write a program to show the functionality of doget and dopost method?
Write a servlet to upload file on server.