I've ran into a very strange issue with AspectJ using load time weaving. My goal was simple: intercept setter calls on my domain objects and do some extra work on the @After pointcut. I am using annotation and aop.xml, with Spring 3.0.5 instrument jar specified as the javaagent.
Here's the gist of the code:
Domain object:
public class Foo extends DomainObject {
private int bar;
public void setBar(int value) {
this.bar = value;
}
}
Aspect:
@Aspect
public class DomainObjectSetterInterceptor {
@After ("execution(* com.mypackage.*.set*(..))")
public void intercept(JoinPoint jp) {
// do something here now that we've intercepted the call
}
}
Invocation code:
Foo foo = new Foo();
foo.setBar(123);
With the above code everything works pretty well, the call is intercepted and my logic is executed. However, funny things start to happen if I add this to my invocation code:
new FooProcessor().process(foo);
where FooProcessor.process is defined as public void process(DomainObject object)
Once this happens my interceptor aspect fails to catch the setter call, and there's no exception in the log or system out.
But if I change the signature of FooProcessor.process to public void process(Foo foo), everything starts working again.
I have no clue what could've caused this. I am also using Spring 3.0.5 but none of the classes involved is a Spring bean so it may as well happen in a Spring-less environment.
DomainObjectoutside thecom.mypackage.*packages? If so, any call tosetBaron the arg passed toprocesswouldn't match your pointcut, and therefore yourinterceptmethod won't be called. I don't know if I've fully understood what you're doing, but my answer is based on the assumptions that: 1) the call toFooProcessor.processreplaces the call tofoo.setBar(123)(it's not merely added after it), and 2) thesetBarmethod is also declared inDomainObject, so you are calling it from theprocessmethod without first casting toFoo. – OpenSauce Jul 20 '11 at 18:28