How does JSP handle run-time exceptions?

Answers were Sorted based on User's Feedback



How does JSP handle run-time exceptions?..

Answer / guest

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.

Is This Answer Correct ?    10 Yes 1 No

How does JSP handle run-time exceptions?..

Answer / mainuddin

My declarring errorpage attribute in page directive as
<% page errorPage="error.jsp"%>

and when u think that a jsp is supposed be encountered an
error then <% page isErrorPage="true"%>

Is This Answer Correct ?    4 Yes 2 No

Post New Answer

More JSP Interview Questions

Can I run jsp on xampp?

1 Answers  


What is server context?

1 Answers  


What are JSP scripting elements?

8 Answers  


How can we stop errors on display in a jsp page?

1 Answers  


Can we call destroy method inside init method?

1 Answers  


How is jsp better than servlet technology?

1 Answers  


Can we call servlet from jsp?

1 Answers  


What is an api with example?

1 Answers  


How can we avoid direct access of jsp pages from client browser?

1 Answers  


What is asp and jsp?

1 Answers  


Which package does jsp api consist of?

1 Answers  


What is page scope?

1 Answers  


Categories