| Simplest definition of Servlets or what is Servlets
To create dynamic web page which is placed on server side we use Servlet technology or we can say to create web application we use Servlets. Because of Java language Servlet technology is robust and Scalable. Servlets comes after the CGI scripting langauge which is a very common server-side programming language. Below are the most common classes and interfaces in Servlet API
(1)GenericServlet
(2)HttpServlet
(3)ServletRequest
(4)ServletResponse
We can also say that Servlet is a class that extends the capabilities of servers and responds to the incoming requests. It can resond to any requests. We can also say that Servlet is a web component that is deployed on the server to create a dynamic web page. | | |