Class HttpServlet

The HttpServlet class extends the GenericServlet class and implements Serializable interface. It provides http specific methods such as doGet, doPost,…

11 years ago

Difference between GenericServlet and HttpServlet

GenericServlet class implements Servlet, ServletConfig and Serializable interfaces. It provides the implementaion of all the methods of these interfaces except…

11 years ago

Servlets – Form Data & Basics of Web

Basics of Web- There are some key points that must be known by the servlet programmer. Let's first briefly discuss…

11 years ago

Advantages of Servlets over CGI

What is web application? A web application is an application accessible from the web. A web application is composed of…

11 years ago

What is web application servlet?

A web application is a dynamic extension of a web or application server. There are two types of web applications:…

11 years ago

Hello World Example in Servlet Interface

Servlets are Java classes which service HTTP requests and implement the javax.servlet.Servlet interface. Web application developers typically write servlets that…

11 years ago

Servlet API

The javax.servlet and javax.servlet.http packages represent interfaces and classes for servlet api. Let's see what are the interfaces of javax.servlet…

11 years ago