InterviewSolution
Saved Bookmarks
| 1. |
Explain The Life Cycle Of Servlet? |
|
Answer» Loaded(by the CONTAINER for first request or on start up if config FILE suggests load-on-startup), INITIALIZED( using init()), SERVICE(service() or doGet() or DOPOST()..), destroy(destroy()) and unloaded. Loaded(by the container for first request or on start up if config file suggests load-on-startup), initialized( using init()), service(service() or doGet() or doPost()..), destroy(destroy()) and unloaded. |
|