WebMvcConfigurerAdapter 提示已过时,可用WebMvcConfigurationSupport或者WebMvcConfigurer代替

昨天在SpringBoot2.1.4上自定义拦截器配置的时候,使用的是 extends WebMvcConfigurerAdapter

1 @Configuration
2 public class MySpringMVCConfig extends WebMvcConfigurerAdapter{
3   // 代码      
4 }

但是WebMvcConfigurerAdapter已过时,可以用extends WebMvcConfigurationSupportimplements WebMvcConfigurer来代替~~~

posted @ 2019-04-11 10:23  飞字有一双翅膀  阅读(56)  评论(0)    收藏  举报