
Spring을 활용하여 웹 어플리케이션을 개발하면, 다양한 Http 요청에 대해 처리하는 기능들을 개발 할 것이다. 그리고, 필연적으로 공통적으로 처리해야 할 기능과 중복된 코드들이 많이 생긴다. 이러한 웹 요청에 대한 공통 관심사를 처리하기 위해 Filter와 Interceptor를 활용할 수 있다. SpringBoot를 활용한 Spring Web 요청 flow 출처 : https://gowoonsori.com/spring/architecture/ Filter Filter.class A filter is an object that performs filtering tasks on either the request to a resource (a servlet or static content), or on..