[Spring] The type HandlerInterceptorAdapter is deprecated
2022. 8. 10. 20:14
프로그래밍/Spring
The type HandlerInterceptorAdapter is deprecated 가 뜬다면 public class LoginInterceptor extends HandlerInterceptorAdapter{ ... } extends HandlerInterceptorAdapter 부분을 👉 implements HandlerInterceptor 혹은 AsyncHandlerInterceptor 로 변경해주기 public class LoginInterceptor implements HandlerInterceptor { ... }