Created
September 6, 2017 08:52
-
-
Save OmarElgabry/47a0b6deb406e4968e75036a96081c1f to your computer and use it in GitHub Desktop.
Spring: A Head Start 🔥 — Beans Configuration (Part 2)
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
| <!-- A simple bean definition --> | |
| <bean id="..." class="..."> | |
| <!-- dependencies and configuration for this bean go here --> | |
| </bean> | |
| <!-- App bean --> | |
| <bean id="app" class="App" lazy-init="true"></bean> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment