Google News
logo
Java Servlets - Interview Questions
How do you write a servlet that is part of a web application?
To write a servlet that is part of a web application :
Create a Java class that extends javax.servlet.http.HttpServlet
Import the classes from servlet.jar (or servlet-api.jar). 
These will be needed to compile the servlet.
Advertisement