If I have an exception in my business layer (e.g. a SQL exception in my JDBC connection bean) how can I propagate it with a custom message to a global error.jsp page? Please help.
|
1
|
|
|
|
|
|
Hope this link would be helpful
|
||
|
|
|
|
You can put
in jour jsp/jsf page. In error.jsp, jou would have:
isErrorPage="true" will give your page another implicit object: exception (the same way you already have request and response on jsp page). You can then extract message from exception. |
||
|
|
|
|
JSF doesn't provide any implicit error handling of this type, though you can redirect to an error page using navigation rules (assuming a form post)...
...or using a redirect...
I recommend looking at the JSF specification for more details. Error messages can be placed on the request scope/session scope/url parameters, as you like. Assuming a Servlet container, you can use the usual web.xml error page configuration.
In your backing bean, you can wrap and throw your checked exceptions in RuntimeExceptions. Some JSF implementations/frameworks will catch these errors (Apache MyFaces/Facelets), so you'll have to configure them not to. |
||
|
|
|
|
Hello, The general way to display error message to the user in JSF is to use FacesMessage: On Java side:
and in the JSF (JSP or XHTML) page, simply use the |
||
|
|
