Uses of Interface
jakarta.servlet.RequestDispatcher
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.
-
Uses of RequestDispatcher in jakarta.servlet
Modifier and TypeMethodDescriptionServletContext.getNamedDispatcher
(String name) Returns aRequestDispatcher
object that acts as a wrapper for the named servlet.ServletContext.getRequestDispatcher
(String path) Returns aRequestDispatcher
object that acts as a wrapper for the resource located at the given path.ServletRequest.getRequestDispatcher
(String path) Returns aRequestDispatcher
object that acts as a wrapper for the resource located at the given path.ServletRequestWrapper.getRequestDispatcher
(String path) The default behavior of this method is to return getRequestDispatcher(String path) on the wrapped request object.