WebMvcConfigurerAdapter在Spring boot2.x已废弃

改为如下:

1.(官方推荐)实现WebMvcConfigurer 


@Configuration

public class WebMvcConfg implements WebMvcConfigurer {


}

2.继承WebMvcConfigurationSupport 


@Configuration

public class WebMvcConfg extends WebMvcConfigurationSupport {


 

}

 

posted @ 2019-11-20 11:03  9529  阅读(91)  评论(0编辑  收藏  举报