Spring WEB MVC 프로세스 Client가 서버에 어떤 요청(Request)을 한다.Spring 내장된 클래스인 DispatcherServlet이 모든 요청을 가로챈다.(web.xml 파일에 설정 되있는 url-pattern에 '/' 값이 그 역할을 한다.)123456789101112131415161718 appServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation /WEB-INF/spring/appServlet/servlet-context.xml 1 appServlet /Colored by Color Scriptercs 1. DispatcherServlet은 HandlerMapping에게 해당 url에 맞는 ..