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

Spring Bean Life Cycle

Let us understand Life Cycle of a bean in Spring The beans life cycle in spring is one of the most important features to understand. In many of the real time applications, it is necessary to perform some of the operations before initializing a bean and it is necessary to perform some cleanup operations before […]

Share this article on
< Previous