web.xml, root-context.xml, servlet.xml 차이점
web.xml 설정을 위한 파일. 최초로 was가 구동될 때, 각종 설정을 정의해줍니다. root-context.xml servlet-context.xml 과 반대로 view 와 관련되지 않는 객체를 정의 합니다. 따라서 Service, Repoeitory (DAO), DB등 비지니스 로직과 관련된 설정을 해준다. servlet.xml 요청과 관련된 객체를 정의 한다. URL 과 관련된 controller, @ 어노테이션, ViewResolver, Interceptor, MultipartResolver 등의 설정을 해준다. web.xml,