inner « AOP « Spring Q&A





1. Spring AOP with anonymous inner classes    stackoverflow.com

I use some anonymous inner classes like

foo(){
      A a = new A(arg1){   //it isn't spring bean yet
        ...

2. Aspectj and catching private or inner methods    stackoverflow.com

I've configureg AspectJ with Spring and it works fine when "catching" public methods called from out of the class. Now I want do something like this:

public class SomeLogic(){

   public ...