+ - 0:00:00
Notes for current slide
Notes for next slide
1 / 14

Dependency Injection

2 / 14

A CD Player App

Let's start with the following class, and build a class to "play" the CD

public class SgtPeppers {
private String title = "Sgt. Pepper's Lonely Hearts Club Band";
private String artist = "The Beatles";
public void play() {
System.out.println("Playing " + title + " by " + artist);
}
}
3 / 14

Class Dependencies

A dependency of a class is any non-primitive instance variable of the class.

4 / 14

Class Dependencies

A dependency of a class is any non-primitive instance variable of the class.

public class CdPlayer {
private SgtPeppers cd;
public CdPlayer() {
this.cd = new SgtPeppers();
}
public void play() {
cd.play();
}
}
4 / 14

Class Dependencies

A dependency of a class is any non-primitive instance variable of the class.

public class CdPlayer {
private SgtPeppers cd;
public CdPlayer() {
this.cd = new SgtPeppers();
}
public void play() {
cd.play();
}
}

CdPlayer depends on SgtPeppers

4 / 14

Tight Coupling

In the previous example, we say that CdPlayer is tightly coupled to the SgtPeppers class, since it depends explicitely on the given class.

5 / 14

Tight Coupling

In the previous example, we say that CdPlayer is tightly coupled to the SgtPeppers class, since it depends explicitely on the given class.

A less coupled version would be:

public class CdPlayer {
private SgtPeppers cd;
public CdPlayer(SgtPeppers cd) {
this.cd = cd;
}
public void play() {
cd.play();
}
}
5 / 14

Loose Coupling

We can take this a step further by introducing an interface and reducing the dependency on the concrete class SgtPeppers

6 / 14

Loose Coupling

We can take this a step further by introducing an interface and reducing the dependency on the concrete class SgtPeppers

public interface CompactDisc {
public void play();
}
public class SgtPeppers implements CompactDisc {
private String title = "Sgt. Pepper's Lonely Hearts Club Band";
private String artist = "The Beatles";
public void play() {
System.out.println("Playing " + title + " by " + artist);
}
}
6 / 14

Loose Coupling via Contructors

The refactored CdPlayer looks like:

public class CdPlayer {
private CompactDisc cd;
public CdPlayer(SgtPeppers cd) {
this.cd = cd;
}
public void play() {
cd.play();
}
}
7 / 14

The Program

We could now use these classes this way:

public static void main(String[] args) {
CompactDisc cd = new SgtPeppers();
MediaPlayer player = new CdPlayer(cd);
player.play();
}
8 / 14

Loose Coupling via Setters

We could also set up the cd field using a setter:

public class CdPlayer {
private CompactDisc cd;
public void setCd(CompactDisc cd) {
this.cd = cd;
}
public void play() {
cd.play();
}
}
9 / 14

The Program

The the program looks like this:

public static void main(String[] args) {
MediaPlayer player = new CdPlayer();
player.setCd(new SgtPeppers());
player.play();
}
10 / 14

The Program

The the program looks like this:

public static void main(String[] args) {
MediaPlayer player = new CdPlayer();
player.setCd(new SgtPeppers());
player.play();
}

But then these programs are tightly-coupled to the SgtPeppers class

10 / 14

Dependency Injection to the Rescue!

Dependency injection (DI) is a technique that allows application dependencies to be loosened and removed, and managed externally to the main application code.

11 / 14

Dependency Injection to the Rescue!

Dependency injection (DI) is a technique that allows application dependencies to be loosened and removed, and managed externally to the main application code.

It relies on external configuration (via XML or Java configuration classes), and a container.

11 / 14

Dependency Injection to the Rescue!

Dependency injection (DI) is a technique that allows application dependencies to be loosened and removed, and managed externally to the main application code.

It relies on external configuration (via XML or Java configuration classes), and a container.

The container then manages and satisfies dependencies of the application.

11 / 14

DI with Spring

Spring provides a DI framework, including a container to manage dependencies

12 / 14

DI with Spring

Spring provides a DI framework, including a container to manage dependencies

The container can manage objects and dependencies for us:

Objects managed by the container are referred to as beans

12 / 14

Demo: Using DI with Spring

The Soundsystem App

13 / 14
14 / 14

Dependency Injection

2 / 14
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
Esc Back to slideshow