JSF + AspectJ
Has anyone had any experience implementing a logging aspect using Spring + AspectJ with JSF? I have it set up right now to log an entry and exit from every method (app is very small right now). But for some reason, if it is an action method invoked from the JSP, I receive a MethodNotFoundException when trying to call that action method. In addition, my Logging Aspect is never invoked.
For every other method call, from say managed-bean to service or service to dao, the Aspect works fine. Its just calling an action method from a JSF JSP that fails. If I remove the aop-config completely, the action methods work fine.
I can't seem to find any documentation on this issue anywhere. Was hoping someone here came across the same problem.