728x90
반응형

The type HandlerInterceptorAdapter is deprecated 가 뜬다면

public class LoginInterceptor extends HandlerInterceptorAdapter{
	...
}



extends HandlerInterceptorAdapter 부분을

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

public class LoginInterceptor implements HandlerInterceptor {
	...
}
반응형
복사했습니다!