<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="CustomerBean" class="com.vaannila.Customer">
<property name="Person" ref="PersonBean"></property>
</bean>
<bean id="PersonBean" class="com.vannila.Person">
<property name="name" value="rosaline"></property>
<property name="address" value="Bhubaneswar"></property>
<property anme="age" value="24"></property>
</bean>
</beans>


Reply With Quote