WebMvcConfigurationSupport
WebMvcConfigurationSupport的坑
当我们的配置类中继承了 WebMvcConfigurationSupport 这个类后,会发现默认一些配置没有生效了。 因为在springboot自动配置类中可以看到,如果存在 WebMvcConfigurationSupport 类的话就不会生效。 解决办法: 1、直接实现 WebMvcConfi ......
WebMvcConfigurationSupport 详解
1、首先区分四个MVC配置类 四个MVC配置类的关系 WebMvcConfigurerAdapter WebMvcConfigurer WebMvcConfigurationSupport WebMvcAutoConfiguration ①WebMvcConfigurer 为接口 ②WebMvcCo ......