스프링 #인터셉터 #AOP #필터
Spring Filter, Interceptor, AOP 비교
Spring Filter, Interceptor, AOP 1. Filter, Interceptor, AOP의 흐름 실행 순서:Filter → Interceptor → AOP → Interceptor → Filter 2. 개념 1) Filter Dispatcher Servlet 전/후 ServletRequest/ServletResponse 객체 변경 및 조작 수행 가능 WAS 내의 ApplicationContext에서 등록된 필터가 실행 WAS 구동 시 FilterMap이라는 배열에 등록되고, 실행 시 Filter chain을 구성하여 순차적으로 실행 Spring Context 외부에 존재하여 Spring과 무관한 자원에 대해 동작 일반적으로 web.xml에 설정 예외 발생 시 Web Application..