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.

link|improve this question
Is DomainObject outside the com.mypackage.* packages? If so, any call to setBar on the arg passed to process wouldn't match your pointcut, and therefore your intercept method 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 to FooProcessor.process replaces the call to foo.setBar(123) (it's not merely added after it), and 2) the setBar method is also declared in DomainObject, so you are calling it from the process method without first casting to Foo. – OpenSauce Jul 20 '11 at 18:28
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.