Servlets

A servlet is a piece of code which produces a response from a request. The most common kind of servlet is an HttpServlet, which produces an HttpResponse from an HttpRequest. Servlets are part of your web server program.

Example:

Not done yet