What is the use of Application Object and Session Object in
JSP?
Answers were Sorted based on User's Feedback
Answer / krrish
Application object is used to maintain the information
related to the current webapplication which is running in
the webcontainer.
Session object is used to maintain the information related
to the browser from which the user gets the request.
| Is This Answer Correct ? | 42 Yes | 2 No |
Answer / pratheeka reddy
Session represents the HTTP session object associated
with the request,obtained from request getSession().
Application represents the servletcontext object for
storing persistent data for all clients.
The difference between session and application is that
session is tied to one client,but application is for all
clients to share persistent data.
| Is This Answer Correct ? | 22 Yes | 3 No |
Answer / guest
Application Object is limited to with in the WebApplication
Session is limited to the single client
| Is This Answer Correct ? | 22 Yes | 7 No |
When a Java bean object is used in while processing
multiple requests and the information is specific to the
particular client, then we place that Java been object in
Session.
When a Java bean object is used in while processing
multiple requests and the information is not specific to
the any client, then we place that Java been object in
Application.
| Is This Answer Correct ? | 16 Yes | 3 No |
How can a cookie is deleted with JSP?
How to retrieve warnings?
What is the use of jsp implicit objects?
What are the two ways to include the result of another page?
What class.forname will do while loading drivers?
Can we use the exception implicit object in any jsp page?
Explain jsp:plugin action?
How to use jsp el to get http method name?
What are advantages of jsp over asp, php, pure servlets and others?
What are the components that make up a tag library in jsp?
What will happen if iselignored attribute is set as false?
how can i update the marque in jsp without changing the sourse code