스프링 부트 2.4.0 HandlerInterceptorAdapter 유형은 더 이상 사용되지 않습니다. 물어보다 1. 질문(문제점): 스프링 부트 버전 업그레이드 후: 2.1.3.RELEASE -> 2.4.0 경고를 받았습니다. The type HandlerInterceptorAdapter is deprecated 대체품이 있습니까? 2. 해결방안: 이전 - HandlerInterceptor 및 HandlerInterceptorAdapter 첫 번째 방법에서는 preHandle(), postHandle() 및 afterCompletion()의 세 가지 메서드를 모두 재정의해야 합니다. 두 번째에서는 필요한 메서드만 구현할 수 있습니다. 이제 최신 버전에서는 어댑터 없이 직접 handlerIntercep..