Hi, I was using Spring AOP along with Struts 2.0.5. The problem is that when I try to use AOP for logging performance in Struts I get an exception. The class and the xml Conf and the Exception are given below. I'm using Struts 2.0.5. Actually I'm using a starter application called appfuse. Which has already implemented an action called UserAction.
I thought i saw a similar error in the userlist http://www.nabble.com/forum/ViewPost.jtp?post=8800212&framed=y but I'm not sure if it is the same error.
@Aspect public class AroundExample { protected final Log log = LogFactory.getLog(getClass()); @Around("execution(* org.appfuse..*.*(..))") public Object doBasicProfiling(ProceedingJoinPoint pjp) throws Throwable {
long startTime = Calendar.getInstance().getTimeInMillis();
-- Sent from the Struts - User mailing list archive at Nabble.com.
--------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscribe@(protected) For additional commands, e-mail: user-help@(protected)