Chapter 1. applicationContext.xml 등록하여 사용하기 1) 웹어플리케이션에서 사용할 경우 web.xml 파일에 contextConfigLocation /WEB-INF/classes/applicationContext.xml org.springframework.web.context.ContextLoaderListener 를 추가해주신 이후, jsp 혹은 Struts Action 에서 servletContext 를 가져와서 WebApplicationContext wac = WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext); 라고 하면, Spring 설정 파일의 내용을 가지고 있는 WebApplicat..