Difference between IOC and DI in Spring?


Difference between IOC (Inversion Of Control) and DI (Dependency Injection) in Spring?


30/07/12 05:42:00,        By :Maruthi




Answers


IOC(Inversion Of Controller):   Giving control to the container to get instance of object is called Inversion of Control., means instead of you are creating object using new operator, let the container do that for you.

DI(Dependency Injection):  Way of injecting properties to an object is called Dependency injection.

    We have three types of Dependency injection
        1)  Constructor Injection
        2)  Setter/Getter Injection
        3)  Interface Injection
Spring will support only Constructor Injection and Setter/Getter Injection.



30/07/12 05:43:06,        By :Rani





Hey this is a nice and simplest explanation about these terms. It would be more nice if you also provide some more explanation with a code.




20/02/13 02:13:56,        By :Aditya





good short description


17/04/13 11:39:09,        By :Anil Jee Ojha





Name:
Email:
Answer:
 
Enter Above Code: