- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is an application Object in JSP?
The application object is direct wrapper around the ServletContext object for the generated Servlet and in reality an instance of a javax.servlet.ServletContext object.
This object is a representation of the JSP page through its entire lifecycle. This object is created when the JSP page is initialized and will be removed when the JSP page is removed by the jspDestroy() method.
By adding an attribute to application, you can ensure that all JSP files that make up your web application have access to it.
- Related Articles
- What is an exception Object in JSP? What type of exceptions can occur in a JSP page?
- What is a request object in JSP?
- What is a response object in JSP?
- What is the session Object in JSP?
- What is a config Object in JSP?
- What is a pageContext Object in JSP?
- What is a page object in JSP?
- What is the use of page object in JSP? Need an example.
- What is the out implicit object in JSP?
- What is an Application Delivery Controller?
- What is an Application Enablement Platform?
- What is an application gateway in information security?
- What methods of session object is used frequently in JSP and for what purpose?
- What is an application and system program?
- What is an Application-level Firewalls in information security?

Advertisements