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

How to delete a cookie in jsp?

0 Answers  


What are the jsp standard actions?

0 Answers  


What do you know about jsp tags? Explain how you understand the action tag and jsp action elements.

0 Answers  


How do you pass control from one jsp page to another?

0 Answers  


Explain the difference between jspwriter and servlet printwriter in jsp?

0 Answers  






i need the source code for opening a word document in java

0 Answers  


What is response sendredirect?

0 Answers  


What are directives? What are the different types of directives available in jsp?

0 Answers  


i am using rich faces datatable rich:datatable. On entering the value, values get filtered in table. Now how can i get the value in back9ing bean..?

1 Answers  


What is difference between page and pagecontext in jsp?

0 Answers  


how to write the code of jsp program?

0 Answers   Infosys,


What is translation phase?

0 Answers  


Categories