[Spring] 스프링 기본 환경세팅 정리(WEB.XML)
·
노빠꾸 개발일지/SPRING
1. WEB.XML 아래는 웹서비스의 사용되는 기본적인 web.xml 소스입니다. 스프링 웹서비스를 만들때 사용하는 태그들을 아래소스를 기준으로 정리해보겠습니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 contextConfigLocation /WEB-INF/spring/root-context.xml org.springframework.web.context.ContextLoaderListener appServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation /WEB-INF/spring/appServle..