Eclipse Java servlet API tutorial for beginners and professionals with examples on Basics, Life Cycle, Servlet Examples, Client Request, Server Response, Deployment Descriptor, Request Dispatcher, Http Codes, Servlet Filters, Cookies, Sessions and more.
Web application:
A web application or website is an application program which accessed over a network connection using HTTP and often runs inside a web browser.
Web browser:
A web browser is a program which acts as an interface between user and web application e.g. Internet Explorer, Chrome, Safari, Mozilla firefox etc.
CGI (Common gateway interface):
CGI was the first protocol or way of communication between web server and program. It passes a request from a web user to an application program and receives data back to forward to the web user i.e. It is responsible for dynamic content generation.
Advantages of CGI:
- Technology portability: CGI programming can be written in variety of languages like c, c++, perl.
- Web server portability: All service providers support CGI Programs.
Disadvantages:
- Response time is high.
- CGI scripts are platform-dependent.
- For every request, a new process will be started and web server is limited to start processes.
- CGI programs are not object oriented always.
Servlet overcomes the above disadvantages.
Servlet as technology:
As a technology servlet provides a model of communication between a web user request and the application or program on the web server.
Servlet as component:
As a component servlet is a program which is executed in web server and responsible for dynamic content generation.
Main tasks of servlet:
- Read the implicit and explicit data sent by web browser.
- Generate result by processing the data.
- Send the implicit and explicit data as a response to the web browser.
Servlet Packages:
javax.servlet and javax.servlet.http packages contains the classes and interfaces for servlet API. These packages are the standard part of Java’s enterprise edition.
javax.servlet contains a number of classes and interfaces which are mainly used by servlet container.
javax.servlet.http contains a number of classes and interfaces which are mainly used by http protocol.
Differences between CGI and Servlet.
CGI | Servlet |
|
|
Java Servlet tutorial:
- Life cycle of a servlet
- Servlet interface in java with example
- GenericServlet class in java with example
- HttpServlet class in java with example
- Deployment Descriptor: web.xml file with example
- welcome-file-list in web.xml with example
- load-on-startup in web.xml with example
- RequestDispatcher interface with example
- sendRedirect in servlet with example
- Servlet Init parameters and ServletConfig interface with example
- Servlet context parameters and ServletContext interface with example
- Servlet Hello World Example using annotation with example
- Session management and cookies in servlet with example
- Cookie in servlet with example
- Hidden field in servlet with example
- URL rewriting in servlet with example
- HttpSession in servlet with example
- Servlet filter in java with example
- FilterConfig interface with example
- All java servlet example in eclipse
Maven Eclipse Servlet
Servlet interview questions