From e94d1e314f1e775be75d77cd80cc5fd7dd113415 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 1 Jul 2011 17:33:13 +0000 Subject: [PATCH] fixed typo and formatting in Javadoc --- .../config/AnnotationDrivenBeanDefinitionParser.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/config/AnnotationDrivenBeanDefinitionParser.java b/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/config/AnnotationDrivenBeanDefinitionParser.java index f0401b5b53..959fcf8291 100644 --- a/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/config/AnnotationDrivenBeanDefinitionParser.java +++ b/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/config/AnnotationDrivenBeanDefinitionParser.java @@ -45,7 +45,6 @@ import org.springframework.validation.Validator; import org.springframework.validation.beanvalidation.LocalValidatorFactoryBean; import org.springframework.web.bind.support.ConfigurableWebBindingInitializer; import org.springframework.web.bind.support.WebArgumentResolver; -import org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping; import org.springframework.web.servlet.handler.ConversionServiceExposingInterceptor; import org.springframework.web.servlet.handler.MappedInterceptor; import org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver; @@ -62,10 +61,10 @@ import org.w3c.dom.Element; * *

Responsible for: *

    - *
  1. Registering a DefaultAnnotationHandlerMapping bean for mapping HTTP Servlet Requests to @Controller methods - * using @RequestMapping annotations. - *
  2. Registering a AnnotationMethodHandlerAdapter bean for invoking annotated @Controller methods. - * Will configure the HandlerAdapter's webBindingInitializer property for centrally configuring + *
  3. Registering a {@code DefaultAnnotationHandlerMapping} bean for mapping HTTP Servlet Requests to {@code @Controller} methods + * using {@code @RequestMapping} annotations. + *
  4. Registering an {@code AnnotationMethodHandlerAdapter} bean for invoking annotated {@code @Controller} methods. + * Will configure the {@code HandlerAdapter}'s webBindingInitializer property for centrally configuring * {@code @Controller} {@code DataBinder} instances: *
      *
    • Configures the conversionService if specified, otherwise defaults to a fresh {@link ConversionService} instance