mvc:annotation-driven is a tag added in Spring 3.0 which does the following:
- Configures the Spring 3 Type ConversionService (alternative to PropertyEditors)
- Adds support for formatting Number fields with @NumberFormat
- Adds support for formatting Date, Calendar, and Joda Time fields with @DateTimeFormat, if Joda Time is on the classpath
- Adds support for validating @Controller inputs with @Valid, if a JSR-303 Provider is on the classpath
- Adds support for support for reading and writing XML, if JAXB is on the classpath (HTTP message conversion with @RequestBody/@ResponseBody)
- Adds support for reading and writing JSON, if Jackson is o n the classpath (along the same lines as #5)
context:annotation-config Looks for annotations on beans in the same application context it is defined and declares support for all the general annotations like
@Autowired, @Resource, @Required, @PostConstruct etcetc.
**
<mvc:annotation-driven />declares explicit support for annotation-driven MVC controllers (i.e. @RequestMapping, @Controller, although support for those is the default behaviour), as well as adding support for declarative validation via @Valid and message body marshalling with @RequestBody/ResponseBody.
个人理解就是,mvc:annotation-driven,是给spring-mvc增添了额外可用的注解,如@responseBody 等,并且显示声明了基础注解,如@RequestMapping 等(虽然这些注解是默认的)
本文介绍了Spring 3.0中引入的mvc:annotation-driven标签的功能,包括支持类型转换、数据格式化、验证、消息体解析等功能。同时,还解释了context:annotation-config的作用,并对比了二者之间的区别。
4万+

被折叠的 条评论
为什么被折叠?



