Uses of Class
javax.servlet.jsp.PageContext
-
Packages that use PageContext Package Description javax.servlet.jsp javax.servlet.jsp.el javax.servlet.jsp.tagext org.apache.jasper.runtime -
-
Uses of PageContext in javax.servlet.jsp
Methods in javax.servlet.jsp that return PageContext Modifier and Type Method Description abstract PageContextJspFactory. getPageContext(javax.servlet.Servlet servlet, javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, java.lang.String errorPageURL, boolean needsSession, int buffer, boolean autoflush)obtains an instance of an implementation dependent javax.servlet.jsp.PageContext abstract class for the calling Servlet and currently pending request and response.Methods in javax.servlet.jsp with parameters of type PageContext Modifier and Type Method Description abstract voidJspFactory. releasePageContext(PageContext pc)called to release a previously allocated PageContext object. -
Uses of PageContext in javax.servlet.jsp.el
Fields in javax.servlet.jsp.el declared as PageContext Modifier and Type Field Description (package private) PageContextImplicitObjectELResolver.ImplicitObjects. mContextMethods in javax.servlet.jsp.el with parameters of type PageContext Modifier and Type Method Description static java.util.Map<java.lang.String,java.lang.Object>ImplicitObjectELResolver.ImplicitObjects. createApplicationScopeMap(PageContext pContext)Creates the Map that "wraps" application-scoped attributesstatic java.util.Map<java.lang.String,javax.servlet.http.Cookie>ImplicitObjectELResolver.ImplicitObjects. createCookieMap(PageContext pContext)Creates the Map that maps cookie name to the first matching Cookie in request.getCookies().static java.util.Map<java.lang.String,java.lang.String>ImplicitObjectELResolver.ImplicitObjects. createHeaderMap(PageContext pContext)Creates the Map that maps header name to single header value.static java.util.Map<java.lang.String,java.lang.String[]>ImplicitObjectELResolver.ImplicitObjects. createHeadersMap(PageContext pContext)Creates the Map that maps header name to an array of header values.static java.util.Map<java.lang.String,java.lang.String>ImplicitObjectELResolver.ImplicitObjects. createInitParamMap(PageContext pContext)Creates the Map that maps init parameter name to single init parameter value.static java.util.Map<java.lang.String,java.lang.Object>ImplicitObjectELResolver.ImplicitObjects. createPageScopeMap(PageContext pContext)Creates the Map that "wraps" page-scoped attributesstatic java.util.Map<java.lang.String,java.lang.String>ImplicitObjectELResolver.ImplicitObjects. createParamMap(PageContext pContext)Creates the Map that maps parameter name to single parameter value.static java.util.Map<java.lang.String,java.lang.String[]>ImplicitObjectELResolver.ImplicitObjects. createParamsMap(PageContext pContext)Creates the Map that maps parameter name to an array of parameter values.static java.util.Map<java.lang.String,java.lang.Object>ImplicitObjectELResolver.ImplicitObjects. createRequestScopeMap(PageContext pContext)Creates the Map that "wraps" request-scoped attributesstatic java.util.Map<java.lang.String,java.lang.Object>ImplicitObjectELResolver.ImplicitObjects. createSessionScopeMap(PageContext pContext)Creates the Map that "wraps" session-scoped attributesstatic ImplicitObjectELResolver.ImplicitObjectsImplicitObjectELResolver.ImplicitObjects. getImplicitObjects(PageContext pContext)Constructors in javax.servlet.jsp.el with parameters of type PageContext Constructor Description ImplicitObjects(PageContext pContext)Constructor -
Uses of PageContext in javax.servlet.jsp.tagext
Fields in javax.servlet.jsp.tagext declared as PageContext Modifier and Type Field Description protected PageContextTagSupport. pageContextThe PageContext.Methods in javax.servlet.jsp.tagext with parameters of type PageContext Modifier and Type Method Description voidTag. setPageContext(PageContext pc)Set the current page context.voidTagAdapter. setPageContext(PageContext pc)Must not be called.voidTagSupport. setPageContext(PageContext pageContext)Set the page context. -
Uses of PageContext in org.apache.jasper.runtime
Subclasses of PageContext in org.apache.jasper.runtime Modifier and Type Class Description classJspContextWrapperImplementation of a JSP Context Wrapper.classPageContextImplImplementation of the PageContext class from the JSP spec.Fields in org.apache.jasper.runtime declared as PageContext Modifier and Type Field Description protected PageContextJspFragmentHelper. _jspx_page_contextprivate PageContextJspContextWrapper. invokingJspCtxtprivate PageContextExpressionEvaluatorImpl.ExpressionImpl. pageContextprivate PageContextExpressionEvaluatorImpl. pageContextprivate PageContextJspFactoryImpl.PrivilegedReleasePageContext. pageContextprivate PageContextVariableResolverImpl. pageContextFields in org.apache.jasper.runtime with type parameters of type PageContext Modifier and Type Field Description private java.lang.ThreadLocal<java.util.LinkedList<PageContext>>JspFactoryImpl. poolMethods in org.apache.jasper.runtime that return PageContext Modifier and Type Method Description PageContextJspFactoryImpl. getPageContext(javax.servlet.Servlet servlet, javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, java.lang.String errorPageURL, boolean needsSession, int bufferSize, boolean autoflush)static PageContextJspContextWrapper. getRootPageContext(PageContext pc)private PageContextJspFactoryImpl. internalGetPageContext(javax.servlet.Servlet servlet, javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, java.lang.String errorPageURL, boolean needsSession, int bufferSize, boolean autoflush)PageContextJspFactoryImpl.PrivilegedGetPageContext. run()Methods in org.apache.jasper.runtime with parameters of type PageContext Modifier and Type Method Description static java.lang.ObjectPageContextImpl. evaluateExpression(java.lang.String expression, java.lang.Class expectedType, PageContext pageContext, ProtectedFunctionMapper functionMap)Evaluates an EL expressionprivate static javax.el.ExpressionFactoryPageContextImpl. getExpressionFactory(PageContext pageContext)static javax.el.MethodExpressionPageContextImpl. getMethodExpression(java.lang.String expression, PageContext pageContext, javax.el.FunctionMapper functionMap, java.lang.Class expectedType, java.lang.Class[] paramTypes)static PageContextJspContextWrapper. getRootPageContext(PageContext pc)static javax.el.ValueExpressionPageContextImpl. getValueExpression(java.lang.String expression, PageContext pageContext, java.lang.Class expectedType, javax.el.FunctionMapper functionMap)static voidJspRuntimeLibrary. handleSetPropertyExpression(java.lang.Object bean, java.lang.String prop, java.lang.String expression, PageContext pageContext, ProtectedFunctionMapper functionMapper)Use proprietaryEvaluate public static void handleSetPropertyExpression(Object bean, String prop, String expression, PageContext pageContext, VariableResolver variableResolver, FunctionMapper functionMapper ) throws JasperException { try { Method method = getWriteMethod(bean.getClass(), prop); method.invoke(bean, new Object[] { pageContext.getExpressionEvaluator().evaluate( expression, method.getParameterTypes()[0], variableResolver, functionMapper, null ) }); } catch (Exception ex) { throw new JasperException(ex); } }private voidJspFactoryImpl. internalReleasePageContext(PageContext pc)voidJspFactoryImpl. releasePageContext(PageContext pc)static voidPageContextImpl. setMethodVariable(PageContext pageContext, java.lang.String variable, javax.el.MethodExpression expression)static voidPageContextImpl. setValueVariable(PageContext pageContext, java.lang.String variable, javax.el.ValueExpression expression)Constructors in org.apache.jasper.runtime with parameters of type PageContext Constructor Description ExpressionEvaluatorImpl(PageContext pageContext)ConstructorExpressionImpl(javax.el.ValueExpression valueExpr, PageContext pageContext)PrivilegedReleasePageContext(JspFactoryImpl factory, PageContext pageContext)VariableResolverImpl(PageContext pageContext)Constructor
-