InterviewSolution
Saved Bookmarks
| 1. |
What's The Servlet Interface? |
|
Answer» The central ABSTRACTION in the SERVLET API is the Servlet interface. All servlets implement this interface, either directly or, more commonly, by extending a CLASS that implements it such as HttpServlet. The central abstraction in the Servlet API is the Servlet interface. All servlets implement this interface, either directly or, more commonly, by extending a class that implements it such as HttpServlet. |
|