接管SpringMVC.
@EnableWebMvc
.
在自定义的WebMvcConfig类上加上这个注解表示,全面接管MVC配置
DelegatingWebMvcConfiguration
作用是 从容器中获取所有的WebMvcConfig
当我们使用@EnableWebMvc
这个注解,将会导入DelegatingWebMvcConfiguration
这个类,由于这类是继承自 WebMvcConfigurationSupport
,所以WebMvcAutoConfiguration
会失效