Spring bean XML configuration example
This repo will demonstrate the creation of spring beans and populate application context in any spring application. This example uses xml configuration to define beans.
<bean id="technologyDetails"
class="com.star.sud.bean.TechnologyDetails"></bean>
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
TechnologyDetails technologyDetails = context.getBean(TechnologyDetails.class);