I am having a throuble about Spring AOP. I am trying to trigger a method using aspect but the method that will trigger the aspect is also the method of the same class and aspect is not working(No errors by the way).Like this

class A extends Runnable{
  public void write(){
      System.out.println('Hi');
  }

   public void run(){
       this.write();
   }

}

<aop:after-returning  method="anyMethod" pointcut="execution(* A.write(..))"/>

Any ideas will be appreciated

Thanks

link|improve this question
feedback

1 Answer

The fact that the advised method is called in a different thread doesn't make any difference. Just make sure the instance that you pass to the thread is created by the spring application context and not by your application code.

Also, since you're advising a method declared in a class, not an interface -- write() -- you'll need to perform load-time weaving (and have cglib in your classpath).

link|improve this answer
Thanks for your answer. I figured that, I wrote the code wrongly. Check ne new one above pls. As u can see the new one, the thread is calling the method belongs to itself. SO this means, there is no interaction with spring context in this operation because it calls it's own method. How can I do this now? – Neron Jan 6 at 11:33
@user1072848 It's not a matter of who calls it, rather how it's instantiated. – Dave Newton Jan 6 at 11:49
So what should I do to create it like u said? – Neron Jan 6 at 11:55
Do not use new to instantiate it. Declare your bean in the application context and inject it or retrieve it programatically from the context. Spring is only able to apply advises to instances that it creates itself. – Costi Ciudatu Jan 6 at 23:09
I got my instances from applicationContext but it did not work. I read load time weaving but I thought that it should not be some much configuration for Spring because this is what Spring is: simplicity. I really do not get it why it does not work – Neron Jan 9 at 9:21
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.