How Servlet works?
It is important to learn how servlet works for understanding the servlet well. Here, we are going to get
By CuckooRadio Editorial Team|2018-10-27T05:34:01-05:00October 27th, 2018|Servlet|
It is important to learn how servlet works for understanding the servlet well. Here, we are going to get
By CuckooRadio Editorial Team|2018-10-27T05:33:08-05:00October 27th, 2018|Servlet|
There are given 6 steps to create a servlet example. These steps are required for all the servers. The servlet
By CuckooRadio Editorial Team|2018-10-25T05:20:00-05:00October 25th, 2018|Servlet|
The HttpServlet class extends the GenericServlet class and implements Serializable interface. It provides http specific methods such as doGet,
By CuckooRadio Editorial Team|2018-10-25T05:18:56-05:00October 25th, 2018|Servlet|
The web container maintains the life cycle of a servlet instance. Let's see the life cycle of the servlet:
By CuckooRadio Editorial Team|2018-10-25T05:17:30-05:00October 25th, 2018|Servlet|
GenericServlet class implements Servlet, ServletConfig and Serializableinterfaces. It provides the implementation of all the methods of these interfaces except the service method. GenericServlet class
By CuckooRadio Editorial Team|2018-10-25T05:16:12-05:00October 25th, 2018|Servlet|
Servlet interface provides commonbehaviorto all the servlets.Servlet interface defines methods that all servlets must implement. Servlet interface needs to be
By CuckooRadio Editorial Team|2018-10-25T05:14:34-05:00October 25th, 2018|Servlet|
The javax.servlet and javax.servlet.http packages represent interfaces and classes for servlet api. The javax.servlet package contains many interfaces and classes that
By CuckooRadio Editorial Team|2018-10-25T04:56:54-05:00October 25th, 2018|Servlet|
Content Type is also known as MIME (Multipurpose internet Mail Extension)Type. It is a HTTP header that provides the description about what
By CuckooRadio Editorial Team|2018-10-25T04:47:59-05:00October 25th, 2018|Servlet|
Server is a device or a computer program that accepts and responds to the request made by other program,