up vote 1 down vote favorite
share [g+] share [fb]

I want to intercept all method invocations to all seam components to see if that would help in logging exceptions. I was thinking that I could do this by getting the list of all components and registered interceptors and simply adding the one I want to that list.

Walter

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

Try to override the default ExceptionFilter with your own at a higher precedence.


@Name("org.jboss.seam.web.exceptionFilter")
@Install(precedence = MOCK, classDependencies="javax.faces.context.FacesContext")
@BypassInterceptors
@Filter(within="org.jboss.seam.web.ajax4jsfFilter")
public class ExceptionFilter extends org.jboss.seam.web.ExceptionFilter

  @Override
  protected endWebRequestAfterException(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Exception e)  {
  // here you log exceptions
  }
}
link|improve this answer
Thanks for your response, but I would like to intercept all components even ones that are from asynchronous jobs running in the background. Is it possible to have access to the method, arguments and the result as well? – Walter White Oct 6 '09 at 1:59
You can use the AsynchronousExceptionHandler in seam. Just like my answer, you can extend it and override it, and use your own. – Shervin Nov 16 '10 at 12:29
feedback

Its better to use Seam's Exception handler. This is how you can do it:

@Name("org.jboss.seam.exception.exceptions")
@Scope(ScopeType.APPLICATION)
@Install(precedence = Install.APPLICATION)
@BypassInterceptors
public class ExceptionHandler extends org.jboss.seam.exception.Exceptions {

    public void handle(Exception e) throws Exception {
            //Log your exception here if you want 
            Events.instance().raiseAsynchronousEvent("SomeListener",e.getMessage());
    super.handle(e);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown