Java Servlet

Why Trust Techopedia

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

Margaret Rouse
Editor

Margaret jest nagradzaną technical writerką, nauczycielką i wykładowczynią. Jest znana z tego, że potrafi w prostych słowach pzybliżyć złożone pojęcia techniczne słuchaczom ze świata biznesu. Od dwudziestu lat jej definicje pojęć z dziedziny IT są publikowane przez Que w encyklopedii terminów technologicznych, a także cytowane w artykułach ukazujących się w New York Times, w magazynie Time, USA Today, ZDNet, a także w magazynach PC i Discovery. Margaret dołączyła do zespołu Techopedii w roku 2011. Margaret lubi pomagać znaleźć wspólny język specjalistom ze świata biznesu i IT. W swojej pracy, jak sama mówi, buduje mosty między tymi dwiema domenami, w ten…