Skip to content

Instantly share code, notes, and snippets.

@jayden-lee
Last active October 7, 2018 06:05
Show Gist options
  • Save jayden-lee/5a67754911841ee5ddbbde7e2a95eed9 to your computer and use it in GitHub Desktop.
Save jayden-lee/5a67754911841ee5ddbbde7e2a95eed9 to your computer and use it in GitHub Desktop.
Spring Framework Start
class A {
private B b = new B();
}
class A {
private B b;
public A(B b) {
this.b = b;
}
public void setB(B b) {
this.b = b;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment