踩坑@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

踩坑@EnableWebMvc最先出现在Python成神之路

版权声明:
作者:zhangchen
链接:https://www.techfm.club/p/9702.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>