| Package | Description | 
|---|---|
| javax.servlet | 
 The javax.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. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
RequestDispatcher | 
ServletContext.getNamedDispatcher(String name)
Returns a  
RequestDispatcher object that acts as a wrapper for the named servlet. | 
RequestDispatcher | 
ServletRequestWrapper.getRequestDispatcher(String path)
The default behavior of this method is to return getRequestDispatcher(String path) on the wrapped request object. 
 | 
RequestDispatcher | 
ServletRequest.getRequestDispatcher(String path)
Returns a  
RequestDispatcher object that acts as a wrapper for the resource located at the given path. | 
RequestDispatcher | 
ServletContext.getRequestDispatcher(String path)
Returns a  
RequestDispatcher object that acts as a wrapper for the resource located at the given path. | 
Copyright © 2019 Eclipse Foundation.
Use is subject to license terms.