Posts

servlets tutorial

HttpServlet Class in Servlet

HttpServlet Class is a GenericServlet extension that adds methods for dealing with HTTP-specific data. To handle specific sorts of HTTP requests (GET, POST, and so on), HttpServlet provides a number of methods such as doGet(), doPost(), and doPut().Read More