HelloWorld using Servlet and Eclipse IDE

In this post We will see very basic example of HelloWorld using Servlet, Eclipse IDE and run the application using Tomcat 7 Server. Here We will follow the step by step process of simply printing the message using servlet. So the basic requirement to run this project is Eclipse ide and Tomcat server, so in … Read more

Servlet: an Overview

A servlet is a Java program that runs in a Web server. The servlet takes an HTTP request from a browser, generates dynamic content like querying a database, and provides an HTTP response back to the browser. Alternatively, the servlet can be accessed directly from another application component or send its output to another component. … Read more