Example usage for Java javax.servlet RequestDispatcher fields, constructors, methods, implement or subclass
The text is from its open source code.
String | FORWARD_REQUEST_URI The name of the request attribute under which the original request URI is made available to the target of a #forward(ServletRequest,ServletResponse) forward |
String | FORWARD_CONTEXT_PATH The name of the request attribute under which the original context path is made available to the target of a #forward(ServletRequest,ServletResponse) forward |
String | FORWARD_PATH_INFO The name of the request attribute under which the original path info is made available to the target of a #forward(ServletRequest,ServletResponse) forward |
String | FORWARD_SERVLET_PATH The name of the request attribute under which the original servlet path is made available to the target of a #forward(ServletRequest,ServletResponse) forward |
String | FORWARD_QUERY_STRING The name of the request attribute under which the original query string is made available to the target of a #forward(ServletRequest,ServletResponse) forward |
String | INCLUDE_REQUEST_URI The name of the request attribute under which the request URI of the target of an #include(ServletRequest,ServletResponse) include is stored |
String | INCLUDE_CONTEXT_PATH The name of the request attribute under which the context path of the target of an #include(ServletRequest,ServletResponse) include is stored |
String | INCLUDE_PATH_INFO The name of the request attribute under which the path info of the target of an #include(ServletRequest,ServletResponse) include is stored |
String | INCLUDE_SERVLET_PATH The name of the request attribute under which the servlet path of the target of an #include(ServletRequest,ServletResponse) include is stored |
String | INCLUDE_QUERY_STRING The name of the request attribute under which the query string of the target of an #include(ServletRequest,ServletResponse) include is stored |
String | ERROR_EXCEPTION The name of the request attribute under which the exception object is propagated during an error dispatch |
String | ERROR_EXCEPTION_TYPE The name of the request attribute under which the type of the exception object is propagated during an error dispatch |
String | ERROR_MESSAGE The name of the request attribute under which the exception message is propagated during an error dispatch |
String | ERROR_REQUEST_URI The name of the request attribute under which the request URI whose processing caused the error is propagated during an error dispatch |
String | ERROR_SERVLET_NAME The name of the request attribute under which the name of the servlet in which the error occurred is propagated during an error dispatch |
String | ERROR_STATUS_CODE The name of the request attribute under which the response status is propagated during an error dispatch |
void | forward(ServletRequest request, ServletResponse response) Forwards a request from a servlet to another resource (servlet, JSP file, or HTML file) on the server. |
Class> | getClass() Returns the runtime class of this Object . |
void | include(ServletRequest request, ServletResponse response) Includes the content of a resource (servlet, JSP page, HTML file) in the response. |
String | toString() Returns a string representation of the object. |