踩坑@EnableWebMvc
开启@EnableWebMvc注解意味着springboot的mvc等自动配置失效,慎用。
建议实现接口:WebMvcConfigurer,不开启EnableWebMvc,做个性化定制。
@EnableWebMvc注解
@Import(DelegatingWebMvcConfiguration.class) @EnableWebMvc
@Configuration(proxyBeanMethods = false) public class DelegatingWebMvcConfiguration extends WebMvcConfigurationSupport xxx } 开启@EnableWebMvc注解,意味着导入WebMvcConfigurationSupport。
@Configuration(proxyBeanMethods = false) @ConditionalOnWebApplication(type = Type.SERVLET
共有 0 条评论