1.

What Is The Difference Between Httpservlet And Genericservlet?

Answer»

A GenericServlet has a service() method to handle REQUESTS.
HttpServlet extends GenericServlet ADDED new methods

  • doGet()
  • DOPOST()
  • doHead()
  • doPut()
  • doOptions()
  • DODELETE()
  • doTrace() methods

Both these classes are abstract.

A GenericServlet has a service() method to handle requests.
HttpServlet extends GenericServlet added new methods

Both these classes are abstract.



Discussion

No Comment Found