What is a Servlet Context?
Created May 4, 2012
The ServletContext object is used by an individual servlet to "call back" and obtain services from the container (such as a request dispatcher). Read the JavaDoc for javax.servlet.ServletContext for more information.
You can maintain "application global" variables by using Servlet Context Attributes.