Uses of Class
javax.servlet.jsp.PageContext
Packages that use PageContext
Package
Description
-
Uses of PageContext in javax.servlet.jsp
Methods in javax.servlet.jsp that return PageContextModifier and TypeMethodDescriptionabstract PageContextJspFactory.getPageContext(javax.servlet.Servlet servlet, javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, 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 PageContextModifier and TypeMethodDescriptionabstract 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 PageContextModifier and TypeFieldDescription(package private) PageContextImplicitObjectELResolver.ImplicitObjects.mContextMethods in javax.servlet.jsp.el with parameters of type PageContextModifier and TypeMethodDescriptionImplicitObjectELResolver.ImplicitObjects.createApplicationScopeMap(PageContext pContext) Creates the Map that "wraps" application-scoped attributesImplicitObjectELResolver.ImplicitObjects.createCookieMap(PageContext pContext) Creates the Map that maps cookie name to the first matching Cookie in request.getCookies().ImplicitObjectELResolver.ImplicitObjects.createHeaderMap(PageContext pContext) Creates the Map that maps header name to single header value.ImplicitObjectELResolver.ImplicitObjects.createHeadersMap(PageContext pContext) Creates the Map that maps header name to an array of header values.ImplicitObjectELResolver.ImplicitObjects.createInitParamMap(PageContext pContext) Creates the Map that maps init parameter name to single init parameter value.ImplicitObjectELResolver.ImplicitObjects.createPageScopeMap(PageContext pContext) Creates the Map that "wraps" page-scoped attributesImplicitObjectELResolver.ImplicitObjects.createParamMap(PageContext pContext) Creates the Map that maps parameter name to single parameter value.ImplicitObjectELResolver.ImplicitObjects.createParamsMap(PageContext pContext) Creates the Map that maps parameter name to an array of parameter values.ImplicitObjectELResolver.ImplicitObjects.createRequestScopeMap(PageContext pContext) Creates the Map that "wraps" request-scoped attributesImplicitObjectELResolver.ImplicitObjects.createSessionScopeMap(PageContext pContext) Creates the Map that "wraps" session-scoped attributesImplicitObjectELResolver.ImplicitObjects.getImplicitObjects(PageContext pContext) Constructors in javax.servlet.jsp.el with parameters of type PageContext -
Uses of PageContext in javax.servlet.jsp.tagext
Fields in javax.servlet.jsp.tagext declared as PageContextMethods in javax.servlet.jsp.tagext with parameters of type PageContextModifier and TypeMethodDescriptionvoidTag.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.runtimeModifier and TypeClassDescriptionclassImplementation of a JSP Context Wrapper.classImplementation of the PageContext class from the JSP spec.Classes in org.apache.jasper.runtime that implement interfaces with type arguments of type PageContextFields in org.apache.jasper.runtime declared as PageContextModifier and TypeFieldDescriptionprotected 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 PageContextModifier and TypeFieldDescriptionprivate ThreadLocal<LinkedList<PageContext>> JspFactoryImpl.poolMethods in org.apache.jasper.runtime that return PageContextModifier and TypeMethodDescriptionJspFactoryImpl.getPageContext(javax.servlet.Servlet servlet, javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, 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, String errorPageURL, boolean needsSession, int bufferSize, boolean autoflush) JspFactoryImpl.PrivilegedGetPageContext.run()Methods in org.apache.jasper.runtime with parameters of type PageContextModifier and TypeMethodDescriptionstatic ObjectPageContextImpl.evaluateExpression(String expression, Class expectedType, PageContext pageContext, ProtectedFunctionMapper functionMap) Evaluates an EL expressionprivate static javax.el.ExpressionFactoryPageContextImpl.getExpressionFactory(PageContext pageContext) static javax.el.MethodExpressionPageContextImpl.getMethodExpression(String expression, PageContext pageContext, javax.el.FunctionMapper functionMap, Class expectedType, Class[] paramTypes) static PageContextJspContextWrapper.getRootPageContext(PageContext pc) static javax.el.ValueExpressionPageContextImpl.getValueExpression(String expression, PageContext pageContext, Class expectedType, javax.el.FunctionMapper functionMap) static voidJspRuntimeLibrary.handleSetPropertyExpression(Object bean, String prop, 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, String variable, javax.el.MethodExpression expression) static voidPageContextImpl.setValueVariable(PageContext pageContext, String variable, javax.el.ValueExpression expression) Constructors in org.apache.jasper.runtime with parameters of type PageContextModifierConstructorDescriptionExpressionEvaluatorImpl(PageContext pageContext) Constructor(package private)ExpressionImpl(javax.el.ValueExpression valueExpr, PageContext pageContext) (package private)PrivilegedReleasePageContext(JspFactoryImpl factory, PageContext pageContext) VariableResolverImpl(PageContext pageContext) Constructor