Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There have been several questions already posted with specific questions about dependency injection, such as when to use it, what frameworks are there for it. However, here's the newbie question:

What is dependency injection and when/why should or shouldn't it be used?

Edit: While external links for followup reading are always appreciated, I'd like to encourage people to write as complete an answer here as possible, so that SO itself can be a good source to learn. I believe this is the intent of the site.

share|improve this question
65  
Hear, hear! We definitely need complete answers, not merely links. – Landon Sep 25 '08 at 0:50
5  
Why write an explanation on something that somebody else has already done way better? That's what citing is for. – VVS Sep 25 '08 at 6:58
42  
The purpose of Stack Overflow is to generate a repository of programming-related information. Providing ONLY a link does not help accomplish this. – Landon Sep 25 '08 at 11:17
6  
I agree with the comments regarding links. I can understand you may want to reference someone else. But at least add why you are linking them and what makes this link better than the other links I could get by using google – Christian Payne Jun 1 '09 at 0:27
24  
Regarding links, remember that they often disappear one way or another. There is a growing number of dead links in SO answers. So, no matter how good the linked article is, it's no good at all if you can't find it. – DOK Oct 28 '10 at 16:26
show 4 more comments

14 Answers

up vote 173 down vote accepted

Basically, instead of having your objects creating a dependency or asking a factory object to make one for them, you pass the needed dependencies in to the constructor, and you make it somebody else's problem (an object further up the dependency graph, or a dependency injector that builds the dependency graph). A dependency as I'm using it here is any other object the current object needs to hold a reference to.

One of the major advantages of dependency injection is that it can make testing lots easier. Suppose you have an object which in its constructor does something like:

public SomeClass() {
    myObject = Factory.getObject();
}

This can be troublesome when all you want to do is run some unit tests on SomeClass, especially if myObject is something that does complex disk or network access. So now you're looking at mocking myObject but also somehow intercepting the factory call. Hard. Instead, pass the object in as an argument to the constructor. Now you've moved the problem elsewhere, but testing can become lots easier. Just make a dummy myObject and pass that in. The constructor would now look a bit like:

public SomeClass (MyClass myObject) {
    this.myObject = myObject;
}

Most people can probably work out the other problems that might arise when not using dependency injection while testing (like classes that do too much work in their constructors etc.) Most of this is stuff I picked up on the Google Testing Blog, to be perfectly honest...

share|improve this answer
6  
Acknowledging that Ben Hoffstein's referenceto Martin Fowler's article is necessary as pointing a 'must-read' on the subject, I'm accepting wds' answer because it actually answers the question here on SO. – AR. Sep 26 '08 at 16:55
3  
+1 for explanation and motivation: making the creation of objects on which a class depends someone else's problem. Another way to say it is that DI makes classes more cohesive (they have fewer responsibilities). – Fuhrmanator Nov 29 '12 at 18:26

The best definition I found so far is one by James Shore:

"Dependency Injection" is a 25-dollar term for a 5-cent concept. [...] Dependency injection means giving an object its instance variables. [...].

There is an article by Martin Fowler that may prove useful too.

Dependency injection is basically providing the objects that an object needs (its dependencies) instead of having it construct them itself. It's a very useful technique for testing, since it allows dependencies to be mocked or stubbed out.

Dependencies can be injected into objects by many means. One can even use specialized dependency injection frameworks to do that, but they certainly aren't obligatory. You don't need those frameworks to have dependency injection. Instantiating and passing objects (dependencies) explicitly to is just as good an injection as injection by a framework.

share|improve this answer
63  
That one liner is the best explanation. – Unknown Sep 13 '09 at 19:28
29  
Thanks - this makes perfect sense. It turns out I've used DI before and just didn't know what it was called. The term "dependency injection" makes it sound like it must be complicated. – Andy West Jun 30 '10 at 15:16
21  
+1 for "25-dollar term for a 5-cent concept." - Not only a $25 term, but also a misleading one. – Slomojo Feb 8 '11 at 4:16
3  
+1 for the 'you don't need a framework' - in fact, I think the quite is so good I'm going to reference it in my book :-) – Martijn Verburg Jul 14 '11 at 10:33
1  
Agreed, @Fuhrmanator. Most of the time testability and cohesion are coupled (no pun intended), in such a way that one thing leads to the other. – Thiago Arrais Dec 4 '12 at 19:37
show 4 more comments

Dependency Injection is a practice where objects are designed in a manner where they receive instances of the objects from other pieces of code, instead of constructing them internally. This means that any object implementing the interface which is required by the object can be substituted in without changing the code, which simplifies testing, and improves decoupling.

For example, consider these clases:

public class PersonService {
  public void addManager( Person employee, Person newManager ) { ... }
  public void removeManager( Person employee, Person oldManager ) { ... }
  public Group getGroupByManager( Person manager ) { ... }
}

public class GroupMembershipService() {
  public void addPersonToGroup( Person person, Group group ) { ... }
  public void removePersonFromGroup( Person person, Group group ) { ... }
}

In this example, the implementation of PersonService::addManager and PersonService::removeManager would need an instance of the GroupMembershipService in order to do its work. Without Dependency Injection, the traditional way of doing this would be to instantiate a new GroupMembershipService in the constructor of PersonService and use that instance attribute in both functions. However, if the constructor of GroupMembershipService has multiple things it requires, or worse yet, there are some initialization "setters" that need to be called on the GroupMembershipService, the code grows rather quickly, and the PersonService now depends not only on the GroupMembershipService but also everything else that GroupMembershipService depends on. Furthermore, the linkage to GroupMembershipService is hardcoded into the PersonService which means that you can't "dummy up" a GroupMembershipService for testing purposes, or to use a strategy pattern in different parts of your application.

With Dependency Injection, instead of instantiating the GroupMembershipService within your PersonService, you'd either pass it in to the PersonService constructor, or else add a Property (getter and setter) to set a local instance of it. This means that your PersonService no longer has to worry about how to create a GroupMembershipService, it just accepts the ones it's given, and works with them. This also means that anything which is a subclass of GroupMembershipService, or implements the GroupMembershipService interface can be "injected" into the PersonService, and the PersonService doesn't need to know about the change.

share|improve this answer
3  
The example is brilliant ! Very realistic & hence conveys the point perfectly ! Thanks a lot ! – Preets Nov 8 '09 at 21:28
Good explanation – Hasan Fahim May 11 '12 at 6:39
3  
omfg the best explanation I read. I didn't even have to read twice which is super rare for me. it was that good. +1 – Kim Jong Woo Feb 27 at 1:10
+1 for "decoupling" and "injecting" a different class that implements the same interface. – Jess Mar 1 at 4:47

The accepted answer is a good one - but I would like to add to this that DI is very much like the classic avoiding of hardcoded constants in the code.

When you use some constant like a database name you'd quickly move it from the inside of the code to some config file and pass a variable containing that value to the place where it is needed. The reason to do that is that these constants usually change more frequently than the rest of the code. For example if you'd like to test the code in a test database.

DI is analogous to this in the world of Object Oriented programming. The values there instead of constant literals are whole objects - but the reason to move the code creating them out from the class code is similar - the objects change more frequently then the code that uses them. One important case where such a change is needed is tests.

share|improve this answer

I found this funny Example : in terms of loose-coupling

Any application is composed with many objects that collaborate each-other to perform some useful stuff. Traditionally each object is responsible for obtaining its own references to the dependent objects (dependencies) it collaborate with. This leads to highly coupled classes and hard-to-test code.

For example , Consider a Car object. A Car depends on Wheels, Engine, Fuel, Battery... etc to run. Traditionally we define the brand of such dependent objects along with the definition of Car object.

class Car{
 private Wheel wh= new NepaliRubberWheel();
 private Battery bt= new ExcideBattery();
 //rest
}

Here, Car object is responsible for creating the dependent objects.

What if we want to change the type of its dependent object - say Wheel after the initial NepaliRubberWheel() punctures. We need to recreate the Car object with its new dependency say ChineseRubberWheel(), But only the Car manufacturer can do that.

Then what the Dependency Injection do us for ...

When using Dependency Injection, objects are given their dependencies on run time rather than compile time(car manufacturing time). So that we can now change the Wheel whenever we want. Here, the Dependency (Wheel) can be injected to Car at run time.

Source : understanding-dependency-injection

share|improve this answer
This one is really funny and impressive – abhi Apr 24 at 4:52
Very "illustrative" example. – Jachu May 3 at 13:00

Best place to start is Martin Fowler's article.

share|improve this answer
1  
Martin Fowler is the man. I agree with Ben. – Josh Sep 25 '08 at 0:36
18  
Martin Fowler IS the man, but if you don't know Java, you won't know what he's doing with his examples. (And if you know C#, you won't know what of what he's doing is DI magic, and what is jumping through the Java hoops.) – dnord Sep 9 '09 at 18:32

The google testing blog does a good job of explaining the benefits of dependency injection with regards to unit testing:

How to think about the new operator

share|improve this answer

From Wikipedia:

Dependency injection (DI) in Computer programming refers to the process of supplying an external dependency to a software component. It is a specific form of inversion of control where the concern being inverted is the process of obtaining the needed dependency.

Here's some good info:

http://en.wikipedia.org/wiki/Dependency_injection

http://en.wikipedia.org/wiki/Inversion_of_control

share|improve this answer

Here's a video explaining DI in context of Java

http://crazybob.org/2007/06/introduction-to-guice-video-redux.html

And then how guice does DI in Java.

http://code.google.com/p/google-guice/

share|improve this answer

One of the nicest explanation I've ever read about DI is from Google's Guice (pronounced as juice)

http://code.google.com/p/google-guice/wiki/Motivation?tm=6

share|improve this answer

Let's imagine that you want to go fishing:

  • Without dependency injection, you need to take care of everything yourself. You need to find a boat, to buy a fishing stick, to look for bait, etc. It's possible, of course, but it puts a lot of responsibility on you. In software terms, it means that you have to lookup for all these things.

    • With dependency injection, someone else takes care of all the preparation and makes the required equipment available to you. You will receive ("be injected") the boat, the stick and the bait - all ready to use.
share|improve this answer

Doesn't "dependency injection" just mean using copy constructors and public setters?

Constructor without dependency injection:

public class Example { 
  private DatabaseThingie myDatabase; 

  public Example() { 
    myDatabase = new DatabaseThingie(); 
  } 

  public void DoStuff() { 
    ... 
    myDatabase.GetData(); 
    ... 
  } 
}

Constructor with dependency injection:

public class Example { 
  private DatabaseThingie myDatabase; 

  public Example() { 
    myDatabase = new DatabaseThingie(); 
  } 

  public Example(DatabaseThingie useThisDatabaseInstead) { 
    myDatabase = useThisDatabaseInstead; 
  }

  public void DoStuff() { 
    ... 
    myDatabase.GetData(); 
    ... 
  } 
}

Source: http://www.jamesshore.com/Blog/Dependency-Injection-Demystified.html

share|improve this answer

From the Book, 'Well-Grounded Java Developer: Vital techniques of Java 7 and polyglot programming

DI is a particular form of IoC, whereby the process of finding your dependencies is outside the direct control of your currently executing code.

share|improve this answer

I think the real point of DI, is to use it as a workaround for (ugly from architectural point of view ) reflection mechanism.

share|improve this answer
This is more of a comment than an answer, would you care to elaborate on it? – Tim Post Jan 28 at 10:33
An explanation is highly needed for your statement. – Tabish Sarwar Mar 9 at 22:00

protected by Community May 2 at 0:41

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.