Explain life cycle of a Servlet?
Answers were Sorted based on User's Feedback
Answer / janet
1. a server loads and initializes the servlet by init()
method.
2.the servlet handles zero or more client's requests
through service() method .
3. the server removes the servlet through destroy() method.
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / venky
the object of servlet is created in the init mehod by server
request of the client is processed in service method
the servlet is discarded from thr server by destroy method
| Is This Answer Correct ? | 1 Yes | 0 No |
What is cookie? Why is cookie used?
What are the types of Session Tracking ?
what are the disadvantages of cookies?
In which cases Destroy() is invoked?
What is the life cycle of a servlet?
How do you design microservices?
Does servlet have main method?
Explain Action Servlet?
What are the life cycle methods of the servlet?
What is servlet and its use?
What are the security issues in Servlets?
Write a command to get actual path of a servlet to the server?