Types of Dependency injection

 

Constructor Injection

Here, the dependency is passed when the object is created.

Example:         

Setter Injection

Here, the dependency is passed using a setter method after the object is created.

Example:       

Comments