Uses of Interface
jakarta.servlet.RequestDispatcher
-
Packages that use RequestDispatcher Package Description io.undertow.servlet.spec jakarta.servlet 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. -
-
Uses of RequestDispatcher in io.undertow.servlet.spec
Classes in io.undertow.servlet.spec that implement RequestDispatcher Modifier and Type Class Description classRequestDispatcherImplMethods in io.undertow.servlet.spec that return RequestDispatcher Modifier and Type Method Description RequestDispatcherServletContextImpl. getNamedDispatcher(String name)RequestDispatcherHttpServletRequestImpl. getRequestDispatcher(String path)RequestDispatcherServletContextImpl. getRequestDispatcher(String path) -
Uses of RequestDispatcher in jakarta.servlet
Methods in jakarta.servlet that return RequestDispatcher Modifier and Type Method Description RequestDispatcherServletContext. getNamedDispatcher(String name)Returns aRequestDispatcherobject that acts as a wrapper for the named servlet.RequestDispatcherServletContext. getRequestDispatcher(String path)Returns aRequestDispatcherobject that acts as a wrapper for the resource located at the given path.RequestDispatcherServletRequest. getRequestDispatcher(String path)Returns aRequestDispatcherobject that acts as a wrapper for the resource located at the given path.RequestDispatcherServletRequestWrapper. getRequestDispatcher(String path)The default behavior of this method is to return getRequestDispatcher(String path) on the wrapped request object.
-