Java Servlet

What Does Java Servlet Mean?

Java Servlets are server-side Java program modules that process and answer client requests and implement the servlet interface. It helps in enhancing Web server functionality with minimal overhead, maintenance and support.

Advertisements

A servlet acts as an intermediary between the client and the server. As servlet modules run on the server, they can receive and respond to requests made by the client. Request and response objects of the servlet offer a convenient way to handle HTTP requests and send text data back to the client.

Since a servlet is integrated with the Java language, it also possesses all the Java features such as high portability, platform independence, security and Java database connectivity.

Techopedia Explains Java Servlet

There are two Java Servlet types: Basic and HTTP.

HTTP servlets are used as follows:

  • When an HTML form is submitted, the servlet processes and stores the data.
  • When a client supplies a database query, the results are provided to the client by the servlet.
  • In most cases, the server uses the common gateway interface (CGI).

However, Java Servlets have many advantages over CGI, including:

  • A servlet runs in the same process, eliminating the need to create a new process for every request.
  • The CGI program must be reloaded for each CGI request. A servlet, however, does not require reloading and remains in the memory between requests.
  • A servlet answers multiple requests simultaneously by using one instance, saving memory and easily managing persistent data.
  • The servlet engine runs in a sandbox or restricted environment, protecting the server from potentially harmful servlets.
Advertisements

Related Terms

Latest API Management Terms

Related Reading

Margaret Rouse

Margaret Rouse is an award-winning technical writer and teacher known for her ability to explain complex technical subjects to a non-technical, business audience. Over the past twenty years her explanations have appeared on TechTarget websites and she's been cited as an authority in articles by the New York Times, Time Magazine, USA Today, ZDNet, PC Magazine and Discovery Magazine.Margaret's idea of a fun day is helping IT and business professionals learn to speak each other’s highly specialized languages. If you have a suggestion for a new definition or how to improve a technical explanation, please email Margaret or contact her…