- Java Servlet
The Java Servlet API allows a
software developer to add dynamic content to aWeb server using theJava platform . The generated content is commonlyHTML , but may be other data such asXML . Servlets are the Java counterpart to non-Java dynamic Web content technologies such asPHP , CGI and ASP.NET. Servlets can maintain state across many server transactions by usingHTTP cookie s, session variables orURL rewriting .The Servlet API, contained in the
Java package hierarchy Javadoc:EE|package=javax.servlet|javax/servlet, defines the expected interactions of aWeb container and a servlet. A Web container is essentially the component of a Web server that interacts with the servlets. The Web container is responsible for managing the lifecycle of servlets, mapping a URL to a particular servlet and ensuring that the URL requester has the correct access rights.A Javadoc:EE|javax/servlet|Servlet is an object that receives a request and generates a response based on that request. The basic servlet package defines Java objects to represent servlet requests and responses, as well as objects to reflect the servlet's configuration parameters and execution environment. The package Javadoc:EE|package=javax.servlet.http|javax/servlet/http defines
HTTP -specific subclasses of the generic servlet elements, including session management objects that track multiple requests and responses between the Web server and a client. Servlets may be packaged in a WAR file as aWeb application .Servlets can be generated automatically by
JavaServer Pages (JSP) compiler, or alternately by template engines such asWebMacro . Often servlets are used in conjunction with JSPs in a pattern called "Model 2 ", which is a flavor of themodel-view-controller pattern.History
The complete servlet specification was created by
Sun Microsystems , with version 1.0 finalized in June 1997. Starting with version 2.3, the servlet specification was developed under theJava Community Process . JSR 53 defined both the Servlet 2.3 and JavaServer Page 1.2 specifications. JSR 154 specifies the Servlet 2.4 and 2.5 specifications. As ofMay 10 ,2006 , the current version of the servlet specification is 2.5.In his blog on java.net, Sun veteran and
GlassFish lead Jim Driscoll details the history of servlet technology. [http://weblogs.java.net/blog/driscoll/archive/2005/12/servlet_history_1.html]James Gosling first thought of servlets in the early days of Java, but the concept did not become a product until Sun shipped the Java Web Server product. This was before what is now theJava Platform, Enterprise Edition was made into a specification.Lifecycle of a Servlet
The Servlet lifecycle consists of the following steps:
# The Servlet class is loaded by the container during start-up.
# The container calls theinit()
method. This method initializes the servlet and must be called before the servlet can service any requests. In the entire life of a servlet, theinit()
method is called only once.
# After initialization, the servlet can service client-requests. Each request is serviced in its own separate thread. The container calls theservice()
method of the servlet for every request. Theservice()
method determines the kind of request being made and dispatches it to an appropriate method to handle the request. The developer of the servlet must provide an implementation for these methods. If a request for a method that is not implemented by the servlet is made, the method of the parent class is called, typically resulting in an error being returned to the requester.
# Finally, the container calls thedestroy()
method which takes the servlet out of service. Thedestroy()
method likeinit()
is called only once in the lifecycle of a Servlet.Here is a simple servlet that just generates HTMLervletConfig and ServletContext
There is only one ServletContext in every application. This object can be used by all the servlets to obtain application level information or container details. Every servlet, on the other hand, gets its own ServletConfig object. This object provides initialization parameters for a servlet. A developer can obtain the reference to ServletContext using either the ServletConfig object or ServletRequest object.
Servlet containers
A Servlet container is a specialized web server that supports Servlet execution. It combines the basic functionality of a web server with certain Java/Servlet specific optimizations and extensions – such as an integrated Java runtime environment, and the ability to automatically translate specific URLs into Servlet requests. Individual Servlets are registered with a Servlet container, providing the container with information about what functionality they provide, and what URL or other resource locator they will use to identify themselves. The Servlet container is then able to initialize the Servlet as necessary and deliver requests to the Servlet as they arrive. Many containers have the ability to dynamically add and remove Servlets from the system, allowing new Servlets to quickly be deployed or removed without affecting other Servlets running from the same container. Servlet containers are also referred to as web containers or web engines.
Like the other Java APIs, different vendors provide their own implementation of the Servlet container standard. For a list of some of the free and commercial web containers, see the list of Servlet containers. (Note that 'free' means that non-commercial use is free. Some of the commercial containers, e.g. Resin and Orion, are free to use in a server environment for non-profit organizations).
See also
*
JavaServer Pages
*Java Enterprise Edition
*Java Database Connectivity
*Java Naming and Directory Interface External links
* [http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/Servlets.html Sun's servlet tutorial]
* [http://java.sun.com/products/servlet Sun's servlet product description]
* JSR
** [http://www.jcp.org/en/jsr/detail?id=315 JSR 315] - Servlet 3.0
** [http://www.jcp.org/en/jsr/detail?id=154 JSR 154] - Servlet 2.4 and 2.5
** [http://www.jcp.org/en/jsr/detail?id=53 JSR 53] - Servlet 2.3
* [http://www.javaworld.com/javaworld/jw-01-2006/jw-0102-servlet.html New features added to Servlet 2.5] atJavaWorld
* [http://java.sun.com/products/servlet/2.3/javadoc/index.html Java Documentation of the Servlet 2.3 API]
Wikimedia Foundation. 2010.