Spring AOP aspect not triggered in thread
问题 Every method that called before thread is running, works good, but after starting a thread It doesn't enters aspect. I'm using JDK dynamic proxy objects that implements interface, all public methods called from other thread and not from object itself. I'm using spring 3.0.6. Please help me to understand what I'm missing. Aspect: @Aspect public class CabLoggingAspect { public void init() { System.out.println("CabLoggingAspect: init()"); } @Pointcut("execution(* com.station.taxi.ICab.*(..))")