WebMvcConfigurerAdapter 提示已过时,可用WebMvcConfigurationSupport或者WebMvcConfigurer代替
昨天在SpringBoot2.1.4上自定义拦截器配置的时候,使用的是 extends WebMvcConfigurerAdapter
1 @Configuration
2 public class MySpringMVCConfig extends WebMvcConfigurerAdapter{
3 // 代码
4 }
但是WebMvcConfigurerAdapter已过时,可以用extends WebMvcConfigurationSupport、implements WebMvcConfigurer来代替~~~

浙公网安备 33010602011771号