web.xml 셋팅 ... spring3 org.springframework.web.servlet.DispatcherServlet contextConfigLocation classpath:spring3*.xml 1 spring3 *.htm testFilter org.springframework.web.filter.DelegatingFilterProxy testFilter /* ... 위 방식대로 하면 filter객체가 spring Context 에 등록된 객체를 사용하지 못한다. 그렇기 때문에 root ContextConfigLocation에 으로 등록할 필요가 있는데 아래 설정을 보면 DispatcherServlet에서 context 설정 부분을 주석처리하고 셋팅 파일들(spring3*.xml)을 모두..