Uses of Interface
jakarta.servlet.ServletContext
Packages that use ServletContext
Package
Description
The jakarta.servlet package contains a number of classes and interfaces that describe and define the contracts between a servlet class and the runtime environment provided for an instance of such a class by a conforming servlet container.
The jakarta.servlet.http package contains a number of classes and interfaces that describe and define the contracts between a servlet class running under the HTTP protocol and the runtime environment provided for an instance of such a class by a conforming servlet container.
-
Uses of ServletContext in jakarta.servlet
Methods in jakarta.servlet that return ServletContextModifier and TypeMethodDescriptionServletContext.getContext(String uripath) Returns aServletContextobject that corresponds to a specified URL on the server.FilterConfig.getServletContext()Returns a reference to theServletContextin which the caller is executing.GenericFilter.getServletContext()Returns a reference to theServletContextin which this filter is running.GenericServlet.getServletContext()Returns a reference to theServletContextin which this servlet is running.ServletConfig.getServletContext()Returns a reference to theServletContextin which the caller is executing.ServletContextEvent.getServletContext()Return the ServletContext that changed.ServletRequest.getServletContext()Gets the servlet context to which this ServletRequest was last dispatched.ServletRequestEvent.getServletContext()Returns the ServletContext of this web application.ServletRequestWrapper.getServletContext()Gets the servlet context to which the wrapped servlet request was last dispatched.Methods in jakarta.servlet with parameters of type ServletContextModifier and TypeMethodDescriptionvoidAsyncContext.dispatch(ServletContext context, String path) Dispatches the request and response objects of this AsyncContext to the given path scoped to the given context.voidServletContainerInitializer.onStartup(Set<Class<?>> c, ServletContext ctx) Notifies this ServletContainerInitializer of the startup of the application represented by the given ServletContext.Constructors in jakarta.servlet with parameters of type ServletContextModifierConstructorDescriptionServletContextAttributeEvent(ServletContext source, String name, Object value) Constructs a ServletContextAttributeEvent from the given ServletContext, attribute name, and attribute value.ServletContextEvent(ServletContext source) Construct a ServletContextEvent from the given context.ServletRequestAttributeEvent(ServletContext sc, ServletRequest request, String name, Object value) Construct a ServletRequestAttributeEvent giving the servlet context of this web application, the ServletRequest whose attributes are changing and the name and value of the attribute.ServletRequestEvent(ServletContext sc, ServletRequest request) Construct a ServletRequestEvent for the given ServletContext and ServletRequest. -
Uses of ServletContext in jakarta.servlet.http
Methods in jakarta.servlet.http that return ServletContextModifier and TypeMethodDescriptionHttpSession.getServletContext()Returns the ServletContext to which this session belongs. -
Uses of ServletContext in org.glassfish.grizzly.servlet
Classes in org.glassfish.grizzly.servlet that implement ServletContextModifier and TypeClassDescriptionclassThis class acts as the foundation for registering listeners, servlets, and filters in an embedded environment.Methods in org.glassfish.grizzly.servlet that return ServletContextModifier and TypeMethodDescriptionWebappContext.getContext(String uri) Returns aServletContextobject that corresponds to a specified URL on the server.FilterConfigImpl.getServletContext()Returns a reference to theServletContextin which the caller is executing.HttpServletRequestImpl.getServletContext()Gets the servlet context to which this ServletRequest was last dispatched.HttpSessionImpl.getServletContext()Returns the ServletContext to which this session belongs.ServletConfigImpl.getServletContext()Returns a reference to theServletContextin which the caller is executing.