AspectJ AOP config with JSP [message #1053662] |
Tue, 07 May 2013 04:05  |
Eclipse User |
|
|
|
I have configured AspectJ in my spring application. Since my app is a legacy app which is using JSP scriptlet code for server side processing.
The problem I am facing is that I want to invoke an @AfterThrowing Advice when an Exception occurs in the JSP scriptlet code.
My Advice method signature as of now is:
@Aspect
public class NotificationAdvice {
@AfterThrowing(pointcut = "execution(* com.app.OtherBeanIntf.doSomething(..))", throwing = "error")
public void logAfterThrowing(JoinPoint joinPoint, Throwable error) {
In the above code, OtherBeanIntf is another Java bean which is working fine with this logging advice. Now how do I configure this advice to work with JSP scriptlet code too?
|
|
|
|
Powered by
FUDForum. Page generated in 0.03568 seconds