dependency injection in sping

Object creation in Spring

Reading Time: 3 minutes In spring IOC container deals with Object creation, Dependency satisfaction, and Life-cycle Management. It states that application programmers should only be concerned with the use of objects. Object creation and their management should be handled by an IOC container. The delegation of responsibility from the programmer to the IOC container is known as Inversion Of Control. IOC container can create bean in two ways Directly, Continue Reading