@EnableWebMvc
如果@EnableWebMvc 写在配置类上, springboot的默认配置就会失效
原因:
因为@EnableWebMvc会引入这个类

它继承自

WebMvc的自动配置类: WebMvcAutoConfiguration 生效的条件是 @ConditionalOnMissingBean({WebMvcConfigurationSupport.class})
如果@EnableWebMvc 写在配置类上, springboot的默认配置就会失效
原因:
因为@EnableWebMvc会引入这个类

它继承自

WebMvc的自动配置类: WebMvcAutoConfiguration 生效的条件是 @ConditionalOnMissingBean({WebMvcConfigurationSupport.class})