Created
September 6, 2017 08:34
-
-
Save OmarElgabry/55ca057b677d5c01365d541f18941f66 to your computer and use it in GitHub Desktop.
Spring: A Head Start 🔥— Introduction (Part 1)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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