org.mortbay.jetty.servlet
Class ErrorPageErrorHandler
java.lang.Object
org.mortbay.component.AbstractLifeCycle
org.mortbay.jetty.handler.AbstractHandler
org.mortbay.jetty.handler.ErrorHandler
org.mortbay.jetty.servlet.ErrorPageErrorHandler
- All Implemented Interfaces:
- Handler, LifeCycle
- public class ErrorPageErrorHandler
- extends ErrorHandler
Error Page Error Handler
An ErrorHandler that maps exceptions and status codes to URIs for dispatch using
the internal ERROR style of dispatch.
- Author:
- gregw
_servletContext
protected ServletContext _servletContext
_errorPages
protected Map _errorPages
ErrorPageErrorHandler
public ErrorPageErrorHandler()
handle
public void handle(String target,
HttpServletRequest request,
HttpServletResponse response,
int dispatch)
throws IOException
- Description copied from interface:
Handler
- Handle a request.
- Specified by:
handle
in interface Handler
- Overrides:
handle
in class ErrorHandler
- Throws:
IOException
getErrorPages
public Map getErrorPages()
- Returns:
- Returns the errorPages.
setErrorPages
public void setErrorPages(Map errorPages)
- Parameters:
errorPages
- The errorPages to set. A map of Exception class name or error code as a string to URI string
addErrorPage
public void addErrorPage(Class exception,
String uri)
addErrorPage
public void addErrorPage(int code,
String uri)
doStart
protected void doStart()
throws Exception
- Overrides:
doStart
in class AbstractHandler
- Throws:
Exception
doStop
protected void doStop()
throws Exception
- Overrides:
doStop
in class AbstractHandler
- Throws:
Exception
Copyright © {inceptionYear}-2007 Mort Bay Consulting. All Rights Reserved.