[Web/Servlet JSP] 필터 (Filter)
2020.08.09
1. 필터란? Servlet 2.3 Specifacation(해당 링크 문서의 챕터 6에 나와있음)에 추가된 대표적인 기능 중 하나가 필터입니다. 스펙에는 아래와 같이 설명되어 있습니다. A filter is a reusable piece of code that transforms either the content of an HTTP request or response and can also modify header information. HTTP Request 또는 HTTP Response 내용을 수정할 수 있고, HTTP 헤더 정보 또한 수정할 수 있는 재사용 가능한 코드 조각 구조를 보면 다음과 같습니다. 위의 그림에서 보여지듯이, 필터는 HTTP 요청이 서블릿으로 가기 전에 먼저 맞닥뜨리는 놈입니..