<mvc:annotation-driven>配置

来源:互联网 发布:时光在飞逝生命知多少 编辑:程序博客网 时间:2024/05/17 12:22


<mvc:annotation-driven>配置会自动注册AnnotationMethodHandlerAdapter和DefaultAnnotationHandlerMapping


AnnotationMethodHandlerAdapter作用是对有RequestMapping注解的控制器进行HTTP路径、HTTP方法和请求参数解析.DefaultAnnotationHandlerMapping作用是映射处理程序方法级别的HTTP路径.在spring 3.1之后由RequestMappingHandlerAdapter和RequestMappingHandlerMapping代替