스프링 부트에서 인터셉터를 사용하고 싶을 경우 아래의 내용으로 설정 클래스를 만들어 주면 됩니다. import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; /** * 인터셉터 설정 */ @Configuration public class InterceptorConfig imp..