The type HandlerInterceptorAdapter is deprecated 가 뜬다면 public class LoginInterceptor extends HandlerInterceptorAdapter{ ... } extends HandlerInterceptorAdapter 부분을 👉 implements HandlerInterceptor 혹은 AsyncHandlerInterceptor 로 변경해주기 public class LoginInterceptor implements HandlerInterceptor { ... }