作用

作者: steamed_bun | 来源:发表于2017-08-07 20:08 被阅读0次

    一、直接查看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、进去就是<mvc:annotation-driven/>的介绍。

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

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

    相关文章

      网友评论

          本文标题:作用

          本文链接:https://www.haomeiwen.com/subject/hbzmgttx.html