使用java配置springmvc 的疑问

在java配置springmvc 时继承 WebMvcConfigurationSupport 和 WebMvcConfigurerAdapter 这两个类 有什么区别

最简单的一点区别是:
使用WebMvcConfigurerAdapter时要加@EnableWebMvc注解,使用WebMvcConfigurationSupport 不用加@EnableWebMvc注解

WebMvcConfigurationSupport 与WebMvcConfigurerAdapter 都可以配置MVC,WebMvcConfigurationSupport 支持的自定义的配置更多更全,WebMvcConfigurerAdapter有的WebMvcConfigurationSupport 都有

参考链接:http://blog.csdn.net/qq_20314665/article/details/77700728