top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are the benefits of PageContext implicit object in java?

+1 vote
521 views
What are the benefits of PageContext implicit object in java?
posted Nov 6, 2017 by Jon Deck

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

JSP pageContext implicit object is instance of javax.servlet.jsp.PageContext abstract class implementation. We can use pageContext to get and set attributes with different scopes and to forward request to other resources. pageContext object also hold reference to other implicit object.

This is the only object that is common in both JSP implicit objects and in JSP EL implicit objects.

answer Nov 6, 2017 by Manikandan J
...