I want to log each bean defined in my spring files that have interceptors attached to them. I'm using the auto bean creator and I want to make SURE that the transaction interceptors were applied since I'm using wildcards.
Dino
I want to log each bean defined in my spring files that have interceptors attached to them. I'm using the auto bean creator and I want to make SURE that the transaction interceptors were applied since I'm using wildcards.
Dino
An intercepted bean can be cast to org.springframework.aop.framework.Advised. Use getAdvisors() to examine the chain. See the AOP chapter in the ref manual.