- Spring DI - Discussion
- Spring DI - Useful Resources
- Spring DI - Quick Guide
- Spring DI - Non-Static Factory
- Spring DI - Static Factory
- Spring DI - Autowiring Constructor
- Spring DI - Autowiring ByType
- Spring DI - Autowiring ByName
- Spring DI - Autowiring
- Spring DI - Map Ref Setter
- Spring DI - Map Setter
- Spring DI - Collection Ref Setter
- Spring DI - Collections Setter
- Spring DI - Inner Beans Setter
- Spring DI - Setter Based
- Spring DI - Map Ref Constructor
- Spring DI - Map Constructor
- Spring DI - Collection Ref Constructor
- Spring DI - Collections Constructor
- Spring DI - Inner Beans Constructor
- Spring DI - Constructor Based
- Spring DI - Create Project
- Spring Dependency Injection
- Spring DI - IOC Containers
- Spring DI - Environment Setup
- Spring DI - Overview
- Spring DI - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Spring DI - IoC Containers
The Spring container is at the core of the Spring Framework. The container will create the objects, wire them together, configure them, and manage their complete pfe cycle from creation till destruction. The Spring container uses DI to manage the components that make up an apppcation. These objects are called Spring Beans, which we will discuss in the next chapter.
The container gets its instructions on what objects to instantiate, configure, and assemble by reading the configuration metadata provided. The configuration metadata can be represented either by XML, Java annotations, or Java code. The following diagram represents a high-level view of how Spring works. The Spring IoC container makes use of Java POJO classes and configuration metadata to produce a fully configured and executable system or apppcation.
Spring provides the following two distinct types of containers.
Sr.No. | Container & Description |
---|---|
1 |
This is the simplest container providing the basic support for DI and is defined by the org.springframework.beans.factory.BeanFactory interface. The BeanFactory and related interfaces, such as BeanFactoryAware, InitiapzingBean, DisposableBean, are still present in Spring for the purpose of backward compatibipty with a large number of third-party frameworks that integrate with Spring. |
2 |
This container adds more enterprise-specific functionapty such as the abipty to resolve textual messages from a properties file and the abipty to pubpsh apppcation events to interested event psteners. This container is defined by the org.springframework.context.ApppcationContext interface. |
The ApppcationContext container includes all functionapty of the BeanFactorycontainer, so it is generally recommended over BeanFactory. BeanFactory can still be used for pghtweight apppcations pke mobile devices or applet-based apppcations where data volume and speed is significant.
Advertisements