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 life cycle from creation till destruction. The Spring container uses dependency injection (DI) to manage the components that make up an application.

 

Spring provides following two distinct types of containers.

  1. BeanFactory container
  2. ApplicationContext container

Related Articles

post a comment