Servlet

What is a Servlet?

Servlet can be described in many ways, depending on the context.
  • Servlet is a technology which is used to create a web application.
  • Servlet is an API that provides many interfaces and classes including documentation.
  • Servlet is an interface that must be implemented for creating any Servlet.
  • Servlet is a class that extends the capabilities of the servers and responds to the incoming requests. It can respond to any requests.
  • Servlet is a web component that is deployed on the server to create a dynamic web page.
Servlet

Do You Know?
  • What is the web application and what is the difference between Get and Post request?
  • What information is received by the web server if we request for a Servlet?
  • How to run servlet in Eclipse, MyEclipse and Netbeans IDE?
  • What are the ways for servlet collaboration and what is the difference between RequestDispatcher and sendRedirect() method?
  • What is the difference between ServletConfig and ServletContext interface?
  • How many ways can we maintain the state of a user? Which approach is mostly used in web development?
  • How to count the total number of visitors and whole response time for a request using Filter?
  • How to run servlet with annotation?
  • How to create registration form using Servlet and Oracle database?
  • How can we upload and download the file from the server?

What is a web application?

A web application is an application accessible from the web. A web application is composed of web components like Servlet, JSP, Filter, etc. and other elements such as HTML, CSS, and JavaScript. The web components typically execute in Web Server and respond to the HTTP request.

CGI (Common Gateway Interface)

CGI technology enables the web server to call an external program and pass HTTP request information to the external program to process the request. For each request, it starts a new process.
CGI vs., Servlet

Disadvantages of CGI

There are many problems in CGI technology:
  1. If the number of clients increases, it takes more time for sending the response.
  2. For each request, it starts a process, and the web server is limited to start processes.
  3. It uses platform dependent language e.g. C, C++, perl.

Comments

Popular posts from this blog

Image Processing Concepts and Applications

Machine Learning Concepts

Python Concepts