How should you address this?

You are implementing a model component. You realize that an IOException might arise if you lose connection to the database. How should you address this?

You are implementing a model component. You realize that an IOException might arise if you lose connection to the database. How should you address this?

A.
Implement multipathing to provide redundant connectivity to the database, thereby avoiding that risk of connection failure.

B.
Provide an error handler page, and use the page directive in the invoking ISP to redirect to that page if the error arises.

C.
Use the JSTL <c:catch> tag to take control if the exception arises.

D.
Surround the problem area with a try/catch block and implement appropriate recovery or fallback behavior.

Explanation:
http://www.ibm.com/developerworks/java/library/j-jstl0318/ (topic: exception handling)



Leave a Reply 1

Your email address will not be published. Required fields are marked *


bestfriend

bestfriend

It is D. Model component is banckend, not frontend, so you need use try/catch block.