프로그래밍/Spring

[Spring] The type HandlerInterceptorAdapter is deprecated

Gooding 2022. 8. 10. 20:14
728x90
반응형

The type HandlerInterceptorAdapter is deprecated 가 뜬다면

public class LoginInterceptor extends HandlerInterceptorAdapter{
	...
}



extends HandlerInterceptorAdapter 부분을

👉 implements HandlerInterceptor 혹은 AsyncHandlerInterceptor  로 변경해주기

public class LoginInterceptor implements HandlerInterceptor {
	...
}
반응형