WebMvcConfigurerAdapter已過期

Spring Boot2.0的版本(建立的時候自動選擇的這個版本),而後編譯器告訴我WebMvcConfigurerAdapter已過期了ide

 

@Deprecated
public abstract class WebMvcConfigurerAdapter implements WebMvcConfigurer {

    /**
     * {@inheritDoc}
     * <p>This implementation is empty.
     */
    @Override
    public void configurePathMatch(PathMatchConfigurer configurer) {
    }

 

新的實現是: spa

@Configuration
public class WebMvcConfg implements WebMvcConfigurer {
  //省略
}
@Configuration
public class WebMvcConfg extends WebMvcConfigurationSupport {
  //省略
}推薦
相關文章
相關標籤/搜索