springboot详解WebMvcConfigurer接口(创建拦截器Interceptor)

SpringBoot 确实为我们做了很多事情, 但有时候我们想要自己定义一些Handler,Interceptor,ViewResolver,
SpringBoot 2.0 后MessageConverter只能靠实现WebMvcConfigurer接口来实现,在Spring Boot 1.5版本都是靠重写WebMvcConfigurerAdapter的方法来添加自定义拦截器,消息转换器等。
参考: https://yq.aliyun.com/articles/617307

SpringBoot之HandlerInterceptor拦截器的使用
https://blog.csdn.net/zhibo_lv/article/details/81699360

你可能感兴趣的:(springboot详解WebMvcConfigurer接口(创建拦截器Interceptor))