After upgrade Spring boot version: 2.1.3.RELEASE -> 2.4.0
I got a warning:
The type HandlerInterceptorAdapter is deprecated
Are there any replacements?
As of Spring 5.3 in favor of implementing HandlerInterceptor and/or AsyncHandlerInterceptor directly.
So,
extends HandlerInterceptorAdapter -> implements HandlerInterceptor