1. 程式人生 > >轉:<mvc:annotation-driven/>的註解意義

轉:<mvc:annotation-driven/>的註解意義

fig ioc容器 註冊 dap explicit json處理 The don eve

<mvc:annotation-driven /> 是一種簡寫形式,完全可以手動配置替代這種簡寫形式,簡寫形式可以讓初學都快速應用默認配置方案。<mvc:annotation-driven /> 會自動註冊DefaultAnnotationHandlerMapping與AnnotationMethodHandlerAdapter 兩個bean,是spring MVC為@Controllers分發請求所必須的。
並提供了:數據綁定支持,@NumberFormatannotation支持,@DateTimeFormat支持,@Valid支持,讀寫XML的支持(JAXB),讀寫JSON的支持(Jackson)。
後面,我們處理響應ajax請求時,就使用到了對json的支持。
後面,對action寫JUnit單元測試時,要從spring IOC容器中取DefaultAnnotationHandlerMapping與AnnotationMethodHandlerAdapter 兩個bean,來完成測試,取的時候要知道是<mvc:annotation-driven />這一句註冊的這兩個bean。

<context:annotation-config> declares support for general annotations such as @Required, @Autowired, @PostConstruct, and so on.

<mvc:annotation-driven /> is actually rather pointless. It declares explicit support for annotation-driven MVC controllers (i.e.@RequestMapping, @Controller, etc), even though support for those is the default behaviour.

My advice is to always declare <context:annotation-config>, but don‘t bother with <mvc:annotation-driven /> unless you want JSON support via Jackson.

當我們需要controller返回一個map的json對象時,可以設定<mvc:annotation-driven />,

同時設定<mvc:message-converters> 標簽,設定字符集和json處理類

原文地址:http://kingliu.iteye.com/blog/1972973

轉:<mvc:annotation-driven/>的註解意義