Springboot2.4.0不推荐使用HandlerInterceptorAdapter类型
升级 Spring boot 版本后:2.1.3.RELEASE -> 2.4.0
我收到警告:
The type HandlerInterceptorAdapter is deprecated
有替代品吗?
回答
从 Spring 5.3 开始,支持直接实现 HandlerInterceptor 和/或 AsyncHandlerInterceptor。
春季文档
所以,
extends HandlerInterceptorAdapter -> implements HandlerInterceptor
THE END
二维码