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 { //省略 }推荐