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 drivermanager in jdbc?
Is jdbc connection secure?
What causes no suitable driver error?
What is difference between jdbc and odbc?
How to get the Database server details in java program?
What is the latest version of JDBC? What are the new features added in that?
What is JDBC DataSource and what are it’s benefits?
What is jdbc architecture?
What is jdbc and jpa?
Which type of JDBC driver is the fastest one?
What are four types of JDBC driver?
What are collection pools?
password, is stored in as plain text. What can I do to protect my passwords?
How you restrict a user to cut and paste from the html page using java programing?
Explain the role of driver in jdbc.