Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to log the exceptions that are thrown when serving JSF files in the same way other exceptions are logged in our web application.

We annotate classes with logged exceptions with @LoggedExceptions and a MehtodInterceptor is matched against those classes with Guice AOP (This should be very similar for other implementations of aopalliance...)

The main problem is, that the method interceptor does not work. How can i intercept method calls on JSF-backing code?

share|improve this question

1 Answer

You must replace the default el-resolver (<el-resolver> in faces-context.xml) with a Guice el-resolver, so that the jsf beans become instantiated by Guide.

Search for "Guice el resolver", or take this one (I can't guarantee it works). Also check this thread.

Also, read the top results of this google search

share|improve this answer
I already have a VariableResolver: snipplr.com/view/26748/guice-variable-resolver This is bound with the following code in faces-config.xml: <variable-resolver>a.b.c.GuiceVariableResolver</variable-resolver> – kungfoo Jan 20 '10 at 13:03
Is something wrong with that? – kungfoo Jan 20 '10 at 13:04
at least in my config using spring, it is the <el-resolver>, not <variable-resolver> – Bozho Jan 20 '10 at 13:12
Ill try getting a custom el-resolver in there and report back. – kungfoo Jan 20 '10 at 13:16
It's an icefaces 1.8 application. The el-resolver is silently ignored... – kungfoo Jan 20 '10 at 13:37
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.