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 |
How does el search for an attribute?
What is context in jsp?
How to set a cookie in JSP?
Can jsp contain javascript?
What is the major difference between servletcontext and pagecontext?
how to make a jsp page threadsafe?
What will happen if iselignored attribute is set as false?
How can I declare methods within my jsp page?
what are the tools used in your project , How to ask the answer this question
Write a Program using Servlet and JDBC for developing online application for displaying the details of Cars owned by the residents in XYZ society. Make necessary assumptions and create appropriate databases.
Why is used in jsp?
Why should we not configure jsp standard tags in web.xml?