Skip to content

Instantly share code, notes, and snippets.

@OmarElgabry
Created September 6, 2017 08:34
Show Gist options
  • Select an option

  • Save OmarElgabry/55ca057b677d5c01365d541f18941f66 to your computer and use it in GitHub Desktop.

Select an option

Save OmarElgabry/55ca057b677d5c01365d541f18941f66 to your computer and use it in GitHub Desktop.
Spring: A Head Start 🔥— Introduction (Part 1)
public class App {
private Service service;
// A service object will be injected by Spring IoC container
public App (Service service) {
this.service = service;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment