Spring Boot 中 WebMvcConfigurerAdapter 方法过时

用Spring Boot 2.0 写代码的时候,IDEA提示我WebMvcConfigurerAdapter 方法过时,解决方法如下

@Configuration
public class WebMvcConfg implements WebMvcConfigurer {
  //省略
}
@Configuration
public class WebMvcConfg extends WebMvcConfigurationSupport {
  //省略
}
推荐
我用的第二种


你可能感兴趣的:(java)