Spring Essential Overview Flashcards
1
Q
What is the Spring Framework?
A
An open source, lightweight, Dependency Injection Framework for building Java (enterprise) applications.
2
Q
What makes the Spring framework light weight?
A
- Doesn’t require a Java EE App server
- Spring is not Invasive
- low overhead (jars < 8mb)
3
Q
What does it mean that the Spring Framework provides a Dependency inversion (DI) container
A
- Object don’t need to worry about finding and connecting to each other
- Spring instantiates and injects dependencies into your objects
- Spring also serves as a lifecycle manager
4
Q
When was the first release of Spring?
A
2003
5
Q
A