Does Spring supports Interface Injection completely?
From “Martin Fowler” Blog it was mentioned that a component that depends on a bean needs to implemented as an Interface that injects Bean.
When we consider this scenario it will be possible BeanNameAware, XXXAware Interfaces that injects appropriate bean object.
Is it possible to inject userdefinedd Beans using Interface Injection other than spring supplied classes.
I am confused with all the above.