javax.servlet.http.HttpServlet
A very handy superclass for any type of servlet. Type conversion is automatic. It is also possible for subclasses to specify required properties.
This servlet leaves request handling to subclasses, inheriting the default behavior of HttpServlet (doGet, doPost, etc).
doGet
doPost
This servlet superclass has no dependency on a Spring application context, in contrast to the FrameworkServlet class which loads its own context.
javax.servlet.http.HttpServletthat treats its config parameters as bean properties.A very handy superclass for any type of servlet. Type conversion is automatic. It is also possible for subclasses to specify required properties.
This servlet leaves request handling to subclasses, inheriting the default behavior of HttpServlet (
doGet,doPost, etc).This servlet superclass has no dependency on a Spring application context, in contrast to the FrameworkServlet class which loads its own context.