Showing posts with label SPRING CONTAINER. Show all posts
Showing posts with label SPRING CONTAINER. Show all posts

Sunday, October 14, 2018

Spring IoC Container with XML configuration

What is IoC Container ? 

The org.springframework.context.ApplicationContext interface represents the Spring IoC container. This container instantiates, configures, and assemble beans by using externally provided configuration metadata.
ApplicationContext and BeanFactory are the same, but the ApplicationContext adds more enterprise-related functionality. In short, the ApplicationContext is a superset of the BeanFactory.