스프링 MVC의 기본 구조

IMG_9590.jpg

스프링 MVC 프로젝트의 내부 구조

<!-- Servlet -->
<!-- 	<dependency>
					<groupId>javax.servlet</groupId>
					<artifactId>servlet-api</artifactId>
					<version>2.5</version>
					<scope>provided</scope>
			</dependency> -->
		
<!-- <http://mvnrepository.com/artifact/javax.servlet/javax.servlet-api> -->
<dependency>
		<groupId>javax.servlet</groupId>
		<artifactId>javax.servlet-api</artifactId>
		<version>3.1.0</version>
</dependency>