diff --git a/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java b/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java index c15dc17edf..9dbff1f5a0 100644 --- a/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java +++ b/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMapping.java @@ -144,15 +144,15 @@ import java.util.concurrent.Callable; * Such command objects along with their validation results will be exposed * as model attributes, by default using the non-qualified command class name * in property notation (e.g. "orderAddress" for type "mypackage.OrderAddress"). - * Specify a parameter-level {@link ModelAttribute} annotation for declaring - * a specific model attribute name. + * Specify a parameter-level {@link ModelAttribute @ModelAttribute} annotation for + * declaring a specific model attribute name. *
  • {@link org.springframework.validation.Errors} / * {@link org.springframework.validation.BindingResult} validation results * for a preceding command/form object (the immediate preceding argument). *
  • {@link org.springframework.web.bind.support.SessionStatus} status handle * for marking form processing as complete (triggering the cleanup of session - * attributes that have been indicated by the {@link SessionAttributes} annotation - * at the handler type level). + * attributes that have been indicated by the {@link SessionAttributes @SessionAttributes} + * annotation at the handler type level). *
  • {@link org.springframework.web.util.UriComponentsBuilder} * (Servlet-only, {@literal @MVC 3.1-only}) * for preparing a URL relative to the current request's host, port, scheme, @@ -161,26 +161,26 @@ import java.util.concurrent.Callable; * *

    The following return types are supported for handler methods: *

    * *

    NOTE: {@code @RequestMapping} will only be processed if an