Interface injection in Spring Framework
- by Aubergine
There is article in here, however I am still in doubt, as some people keep confusing me.
Doesn't Spring really support Interface injection at all?
So what I want to clarify:
setSomething(somethingInterface something); // this IS NOT interface injection, IT IS setter injection?
Interface injection is when you just write `implements someExportedModuleInterface' and it configures it automatically?
Could you please give an example of how this interface injection is done with Spring 'aware' interfaces?
I am writing dissertation and I want to be sure what I am saying is not lie and correct.