## Notas
Attempts to automatically configure Spring application based on added jar dependencies.
Opt-in by using either annotations. Only one should ever be created.
- EnableAutoConfiguration
- SpringBootApplication
## Functions as Defaults
Only serves as back up/defaults. If I customize a DataSource bean, then the embedded database default is removed.
## Disable Specifics
Can use `@SpringBootApplication(exclude = {})` to
## Referencias
- [[Spring MOC]]
- [Auto-Configuration - Spring Docs](https://docs.spring.io/spring-boot/reference/using/auto-configuration.html)