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

What is jsp translation time?

0 Answers  


Differentiate between <jsp:include page=…> and <%@include file=…>.

0 Answers  


What are the different types scripting elements in jsp?

0 Answers  


Why jsp is used in java?

0 Answers  


How did you implement caching in jsp?

0 Answers  






Q : In session created by server with client(browser) How can server find that request coming is belong to new session OR belong to session that is timeout.

4 Answers   HCL,


What do you know about jsp tags?

0 Answers  


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

0 Answers  


in jsf page i use two dropdown list.i.e state & district.if state dropdown is selected then & then district is enable.what should be my code.

0 Answers   Tech Mahindra,


What are jsp lifecycle methods?

0 Answers  


Are dialogue tags necessary?

0 Answers  


How can the output of JSP or servlet page be prevented from being cached by the browser?

0 Answers  


Categories