spring是通过AnnotationDrivenBeanDefinitionParser这个类来解析<mvc:annotation-driven/>的
具体的解析函数为
public BeanDefinition parse(Element element, ParserContext parserContext)
在这个解析函数中向spring容器中注册了
RequestMappingHandlerMapping
RequestMappingHandlerAdapter
ExceptionHandlerExceptionResolver
ResponseStatusExceptionResolver
DefaultHandlerExceptionResolver
MappedInterceptor