SpringBoot扩展SpringMVC

编写一个配置类(@Configuration),是WebMvcConfigurerAdapter类型;不能标注@EnableWebMvc;
既保留了所有的自动配置,也能用我们扩展的配置;

1  @Configuration
2  public class MyMvcConfig extends WebMvcConfigurerAdapter {
3      //重写WebMvcConfigurerAdapter的方法 
4  }

 

posted @ 2018-09-09 20:03  xuye97  阅读(104)  评论(0编辑  收藏  举报