IOC Container

Spring framework comes up with its own container whose job is to manage the beans life cycle, associate the dependent beans together (which is called wiring). The container in spring is provided in the form of interfaces namely 1) BeanFactory 2) ApplicationContext These 2 interfaces provided by spring acts as Containers, we can use any […]

Share this article on

What are spring beans?

Spring beans are the objects which are created and managed completely by spring container. These beans are the heart of the application. Beans can be defined in spring either by using XML configuration or by using Annotation. In XML configuration, bean can be defined using < bean > tag inside < beans > tag. In […]

Share this article on
< Previous