springmvc之mvc:annotation-driven

<mvc:annotation-driven/>会自动注册RequestMappingHandlerMapping、RequestMappingHandlerAdapter和ExceptionHandelerExceptionResolver三个bean。

同时还提供一下支持:

  • 支持使用ConversionService实例对表单参数进行类型转换;
  • 支持使用@NumberFormatannotation、@DateTimeFormat注解完成数据类型格式化;
  • 支持使用@Valid注解对javabean实例进行JSR 303验证;
  • 支持使用@RequestBody和@Responsebody注解;
原文地址:https://www.cnblogs.com/xiximayou/p/12186085.html