How does JSP handle run-time exceptions?
Answers were Sorted based on User's Feedback
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 |
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 |
Which attribute specifies a jsp page that should process any exceptions thrown but not caught in the current page? : Citibank
How many messaging models do jms provide for and what are they?
Which of the following action variable is used to include a file in jsp?
how to print a string with out using out.println?
3 Answers Elementus Technologies,
What are implicit objects?
Why are jsp pages the preferred api for creating a web-based client program?
Can I use javascript on jsp page?
what is jsp? a technology ,a language or something else ?
Explain the various scope values for tag.
What are the scopes available in <jsp:usebean>?
Hi, We developed a webpage using jsp for our team, now we need to know who are employees opening this page,i.e, we need to get the windows user name when ever he/she open the page and stores into a variable. Plz help on this
Why do we need servlets and jsp?