인터페이스 주입식으로 작성한 스프링 기본형
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="
		http://www.springframework.org/schema/beans
		http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
		http://www.springframework.org/schema/context
		http://www.springframework.org/schema/context/spring-context-3.0.xsd">
	
	<bean name="DAO 이름" class="패키지명.패키지명.DAO 이름(.java 생략)"/>
	<bean name="Mapping URL" class="패키지명.패키지명.컨트롤러명(.java 생략)">
		<property name="set 생략된 메소드 이름" ref="DAO 이름"></property>
	</bean>
	
</beans>