Spring Beans
Table of Contents
What are spring beans?
Spring beans are just instance objects that are managed by the Spring container. They are created and wired by the framework and put into a “bag of objects” (the container) from where you can get them later.
The “wiring” part there is what dependency injection is all about. You can just say “I will need this thing” and the framework will follow some rules to get you the proper instance.
A bean in the Spring framework is an object created, managed, and destroyed in the Spring IoC Container.
Tags
- Spring Beans - Scopes
- Spring Beans - Lifecycle
- Spring Beans - Autowiring
- Multi threading and Concurrency
- Spring MVC
Reading material
KNOWLEDGE GAP - LEARN MORE, IMPLEMENT THIS