[Spring/스프링] - DispatcherServlet(Front-Controller패턴), web.xml, root-context.xml, servlet-context.xml


[Spring/스프링] - DispatcherServlet(Front-Controller패턴), web.xml, root-context.xml, servlet-context.xml

Spring 프로젝트에서 DispatcherServlet(Front-Controller 패턴) 과web.xml , root-context.xml , servlet-context.xml 파일 분석스프링 프로젝트에서 매우 매우 중요한 3개의 설정파일(.xml)에 대해 분석해보겠습니다. web.xml root-context.xml servlet-context.xml위 파일들중 web.xml 은 Tomcat 구동과 관련된 설정이고, root-context.xml 과 servlet-context.xml 은 스프링과 관련된 설정입니다.프로젝트의 구동은 web.xml 에서 시작합니다. web.xml 의 상단에는 가장 먼저 구동되는 Context Listener가 등록되어 있습니다.web.xml web.xml 은 Deployment Descriptor(배포 서술자) 라고도 합니다.web.xml 은 WAS(W..........



원문링크 : [Spring/스프링] - DispatcherServlet(Front-Controller패턴), web.xml, root-context.xml, servlet-context.xml