DEVFYI - Developer Resource - FYI

How does JSP handle run-time exceptions?

JSP Interview Questions and Answers


(Continued from previous question...)

27. How does JSP handle run-time exceptions?

You can use the errorPage attribute of the page directive to have uncaught runtime exceptions automatically forwarded to an error processing page.
For example:
redirects the browser to the JSP page error.jsp if an uncaught exception is encountered during request processing. Within error.jsp, if you indicate that it is an error-processing page, via the directive:
the Throwable object describing the exception may be accessed within the error page via the exception implicit object.
Note: You must always use a relative URL as the value for the errorPage attribute.

(Continued on next question...)

Other Interview Questions