The Spring IOC container is at the core of the Spring Framework. The container creates the objects, wire them together, configure them, and manage their complete lifecycle from creation to destruction. The Spring container uses dependency injection (DI) to manage the components in an application. So, What is Dependency Injection (DI)?
The container gets instructions on what objects to instantiate, configure, and assemble by reading configuration metadata. The configuration metadata can be represented either by XML, Java annotations, or Java code. The Spring IoC container makes use of Java POJO classes and configuration metadata to produce a fully configured and executable system or application.
The following diagram is a high-level view of how Spring works.
Spring provides following two distinct types of containers.
-
BeanFactory
This is the simplest container which provides basic support for dependency injection (DI) and is defined by the org.springframework.beans.factory.BeanFactory interface. The BeanFactory and its related interfaces, such as BeanFactoryAware, InitializingBean, DisposableBean are still present in Spring for the purposes of backward compatibility with the large number of third-party frameworks that integrate with Spring. -
ApplicationContext
This container adds more enterprise-specific functionality such as the ability to resolve textual messages from a properties file and the ability to publish application events to interested event listeners. This container is defined by the org.springframework.context.ApplicationContext interface.
Configuration Metadata
The different forms of configuration metadata for Spring container are:I hope this article helped you to understand. Please feel free to post any comment or question.
0 comments