Difference between Generic Servlet and HTTP Servlet?
Answer Posted / sudha rani
A GenericServlet has a service() method aimed to handle
requests. HttpServlet extends GenericServlet and adds
support for doGet(), doPost(), doHead() methods (HTTP 1.0)
plus doPut(), doOptions(), doDelete(), doTrace() methods
(HTTP 1.1).
Both these classes are abstract.
| Is This Answer Correct ? | 20 Yes | 6 No |
Post New Answer View All Answers
What is the full form of jdbc?
Why do you use a data source object for a connection?
What are the measures to connect to the db using jdbc?
What are four types of JDBC driver?
What does jdbc do?
RowSetInternal caller and returns void. What can I do in the readData method?
Where can I find info, frameworks and example source for writing a JDBC driver?
What is jdbc drivers in java?
What are the factors that the jdbc driver performance depends upon?
Explain jdbc savepoint?
Explain about Join?
Give an example of code used for setting up connection with a driver.
Explain the two tier and three tier architecture of jdbc.
Which jdbc drivers will run your program?
What are the differences between statement and preparedstatement interface?