유저 A 1998-11-07 "> 유저 A 1998-11-07 "> 유저 A 1998-11-07 ">
<?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>">
	
	<!-- applicationContext.xml -->
	<bean id="userA" class="com.di.ex05.DateVO">
		<property name="name">
			<value>유저 A</value>
		</property>
		<property name="birth">
			<value>1998-11-07</value>
		</property>
	</bean>
	<bean id="userB" class="com.di.ex05.DateVO">
		<property name="name" value="유저 B"/>
		<property name="birth" value="1996-12-30"/>
	</bean>
</beans>