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
- GenericServlet class in java
- HttpServlet class in java
- Deployment Descriptor: web.xml file
- welcome-file-list in web.xml
- load-on-startup in web.xml
- RequestDispatcher interface
- sendRedirect in servlet
- Servlet Init parameters and ServletConfig interface
- Servlet context parameters and ServletContext interface
- Servlet Hello World Example using annotation
- Session management and cookies in servlet
- Cookie in servlet
- Hidden field in servlet
- URL rewriting in servlet
- HttpSession in servlet
- Servlet filter in java
- FilterConfig interface
- java servlet example in eclipse
- The type javax.servlet.ServletException cannot be resolved. It is indirectly referenced from required .class files
- The superclass “javax.servlet.http.HttpServlet” was not found on the Java Build Path
Maven Eclipse Servlet
Servlet interview questions