I am trying to understand Spring Framework more what I know currently, and I am referring to "Pro Spring 3" book.
I came across the following section in the book as below:
It says that in general IoC
can be decomposed into two components viz:
Dependency Injection
and Dependency Lookup
.
With respect to this, I have following questions:
1) Do Spring provide both Dependency Injection
,Dependency Lookup
?
2) Do all Ioc
container have both these systems viz: Dependency Injection
,Dependency Lookup
?
3) If Spring provides both Dependency Injection
,Dependency Lookup
, then isn't it wrong to say that Spring is DI framework, when it has both these capabilities?