What is a Servlet Context?
A ServletContext interface empowers a servlet to view its environment. A servlet can use this interface to get following informations:
- Initial Web Application Parameters
- Application Scope for binding objects
- Virtual Directory Translation
- A common mechanism for Logging information
Each vendor provides specific ServletContext object but they all provide the same functionality defined by the ServletContext interface.
read more
- Initial Web Application Parameters
- Application Scope for binding objects
- Virtual Directory Translation
- A common mechanism for Logging information
Each vendor provides specific ServletContext object but they all provide the same functionality defined by the ServletContext interface.
read more