InterviewSolution
Saved Bookmarks
| 1. |
When We Don't Write Any Constructor For The Servlet, How Does Container Create An Instance Of Servlet? |
|
Answer» CONTAINER CREATES instance of SERVLET by CALLING Class.forName(CLASSNAME).newInstance(). Container creates instance of servlet by calling Class.forName(className).newInstance(). |
|