Spring Framework Concepts

Spring Framework Fundamentals - 10 Cards
Click here to toggle all cards
Dependency Injection
Identify and wire beans together
Inversion of Control (IOC)
Design pattern where control is inverted from hardcoded code to Spring framework
Constructor injection
Set dependencies via Bean constructor
Setter injection
Set dependencies via Bean setter methods
Field injection
No setter or constructor. Dependency is injected using reflection.
IOC Container
Manages Spring beans and their lifecycle
Bean Factory
Basic Spring IOC Container
Application Context
Advanced IOC Container with enterprise features
Spring Beans
Objects managed by Spring
Auto-wiring
Process of wiring in dependencies for a Spring Bean