1. web.xml - web.xml은 설정을 위한 설정 파일 / DD (Deployment Desciptor : 배포설명자) - WAS가 처음 구동될 때 web.xml을 읽어 웹 애플리케이션 설정을 구성 - DispatcherServlet을 등록해주면서 스프링 설정 파일을 지정 - DispatcherServlet은 초기화 과정에서 지정된 설정 파일을 이용해 스프링 컨테이너를 초기화함 * 참고사이트 : https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html#mvc Web on Servlet Stack Spring Web MVC is the original web framework built on the Servlet A..