programing

스프링 부트 2.4.0 핸들러 타입InterceptorAdapter는 사용되지 않습니다.

firstcheck 2023. 2. 14. 22:17
반응형

스프링 부트 2.4.0 핸들러 타입InterceptorAdapter는 사용되지 않습니다.

업그레이드 후 스프링 부트 버전: 2.1.3.릴리즈 -> 2.4.0

경고를 받았어요.

The type HandlerInterceptorAdapter is deprecated

대체품이 있나요?

Spring 5.3 시점에서는 핸들러의 실장에 찬성하고 있습니다.인터셉터 및/또는 비동기 핸들러직접 가로채기.

봄철 문서

그렇게,

extends HandlerInterceptorAdapter -> implements HandlerInterceptor

이전 - 핸들러인터셉터와 핸들러InterceptorAdapter 첫 번째 방법에서는 preHandle(), postHandle() 및 afterCompletion()의 세 가지 메서드를 모두 덮어쓸 필요가 있습니다.두 번째 방법에서는 필요한 메서드만 구현할 수 있습니다.

현재 최신 버전에서는 직접 핸들러를 구현할 수 있습니다.인터셉터 어댑터는 필요 없습니다.필요한 방법만 구현할 수 있습니다.

언급URL : https://stackoverflow.com/questions/65136917/spring-boot-2-4-0-the-type-handlerinterceptoradapter-is-deprecated

반응형