Forums Register Login

Handling Exception/Runtime Exception in JSF

+Pie Number of slices to send: Send
Hi,

Any good pointers to documents describing proper error handling.

Not just navigation rules to an error.jsp file but also handling of runtime exceptions and exceptions in backing beans where you cannot use navigation rules (calling a method from JSF EL etc.).

I am developing jsr 168 portlets using jsf on websphere portal.

I can't get the error handling via web.xml to function and other places I can't manually make it go to an error.jsp in case of exceptions.
How to handle the runtime exception in JSF.

1. By including following tags in web.xml
<error-type>
<error-exception></error-exception>
<error-loaction>/error.jsp</error-loaction>
</error-type>

its not working.


2. If include the
<%@page errorPage="../error/GenericError.jsp" %>
in jsp page then
it is not forwading to error page giving asaertion failure exception

If we change the GenericError.jsp tag like

<f:view>
</f:view>
to
<f:subview>
</f:subview>

then it is going to error page but the
action inside the error page is not getting called its backing bean



Here is code of error.jsp

<%-- jsf:pagecode language="java" location="/JavaSource/pagecode/JSPs/ErrorPage1.java" --%><%-- /jsf:pagecode --%>
<%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@taglib uri="http://java.sun.com/portlet" prefix="portlet"%>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ page isErrorPage="true" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">

</head>
<body>
<div class="errorMessage"><%= exception.getLocalizedMessage() %></div>
<f:subview id="name">
<h:commandButton action="#{OSPMTASecurityBean.cancel}" value="submit"/>


</f:subview>
</body>
</html>
+Pie Number of slices to send: Send
I am also developing portlets. Check this entry for some alternatives:

http://www.newinstance.net/blog/2007/02/06/error-handling-with-jsfportlets-and-aop/
I have always wanted to have a neighbor just like you - Fred Rogers. Tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 4449 times.
Similar Threads
problems with <f:subview>
Error using <hx:jspPanel>
Casting Exception
Navigation Problem
Form Being Rendered Outside of the Page
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 06:14:23.