"> "> ">
<?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="manA" class="com.di.quiz.PointDTO">
		<!-- 
		<property name="name" value="manA"/>
		<property name="kor" value="98"/>
		<property name="eng" value="95"/>
		<property name="math" value="90"/> 
		-->
		 		
		<constructor-arg value="manA"/>
		<constructor-arg value="98"/>
		<constructor-arg value="90"/>
		<constructor-arg value="80"/>
		
	</bean>
	
	<bean id="pointimpl" class="com.di.quiz.PointImpl">
		<constructor-arg ref="manA"/>
	</bean>
</beans>