天天看點

Spring -- <mvc:annotation-driven />

 <mvc:annotation-driven /> 會自動注冊:RequestMappingHandlerMapping 、RequestMappingHandlerAdapter 與ExceptionHandlerExceptionResolver  三個bean。

還将提供以下支援:

 支援使用 ConversionService 執行個體對表單參數進行類型轉換

 支援使用 @NumberFormat、@DateTimeFormat 注解完成資料類型的格式化

 支援使用 @Valid 注解對 JavaBean 執行個體進行 JSR 303 驗證

 支援使用 @RequestBody 和 @ResponseBody 注解

Spring -- <mvc:annotation-driven />