作用

一、直接查看spring帮助文档

1、打开版本 spring 4.2.5 帮助文档:
本地:spring4.2.5\spring-framework-4.2.5.RELEASE\docs\spring-framework-
reference\htmlsingle\index.html
官网:点此
2、打开21.16.1 Enabling the MVC Java Config or the MVC XML Namespace(其它版本类似,找到大类The Web下的小类 Configuring Spring MVC,然后打开第一个就好)。
3、进去就是的介绍。

二、以下我自己的理解(其实就是小翻译 ε(┬┬﹏┬┬)3)

1、会自动注册RequestMappingHandlerMappingRequestMappingHandlerAdapterExceptionHandlerExceptionResolver三个bean支持使用了像@RquestMappingExceptionHandler等等的注解的controller 方法去处理请求。
2、支持使用了ConversionService]的实例对表单参数进行类型转换。
3、支持使用@NumberFormat@NumberFormat注解对数据类型进行格式化。
4、支持使用@Valid对javaBean进行JSR-303验证。
5、支持使用@RequestBody@ResponseBody

你可能感兴趣的:(作用)