What is the use of Application Object and Session Object in
JSP?
Answer Posted / 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 |
Post New Answer View All Answers
What is difference between page and pagecontext in jsp?
How can I override the jspinit() and jspdestroy() methods within a jsp page?
How can you make the finally clause not to fail to execute?
Why are implicit objects not available in a regular jsp page?
What is a scriptlet?
Explain the various scope values for tag.
What is jsp and why do we need it?
How does a jsp engine work?
What is jsp translation phase?
Give an example where you need jsp custom tag?
What is the jsp:getproperty action?
What are the benefits of pagecontext implicit object?
What is jsp custom tag and what are it’s components?
What are the features of jsp?
What are the different scope values for the jsp objects?