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:<%@ page errorPage="error.jsp" %>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:<%@ page isErrorPage="true" %>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.

Showing Answers 1 - 6 of 6 Answers

anooptomar

  • Nov 10th, 2007
 

You can also use "web.xml"  to define your  error page if you dont want to specify the error page on each page. Its scope will be your application wide so you can use.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions