diff --git a/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMappingReflectiveProcessor.java b/spring-web/src/main/java/org/springframework/web/bind/annotation/ControllerMappingReflectiveProcessor.java similarity index 59% rename from spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMappingReflectiveProcessor.java rename to spring-web/src/main/java/org/springframework/web/bind/annotation/ControllerMappingReflectiveProcessor.java index d2b03f12c17..878f3af049e 100644 --- a/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMappingReflectiveProcessor.java +++ b/spring-web/src/main/java/org/springframework/web/bind/annotation/ControllerMappingReflectiveProcessor.java @@ -29,11 +29,12 @@ import org.springframework.core.MethodParameter; import org.springframework.core.annotation.AnnotatedElementUtils; import org.springframework.http.HttpEntity; import org.springframework.lang.Nullable; +import org.springframework.stereotype.Controller; /** - * {@link ReflectiveProcessor} implementation for {@link RequestMapping} - * annotated types. On top of registering reflection hints for invoking - * the annotated method, this implementation handles: + * {@link ReflectiveProcessor} implementation for {@link Controller} and + * controller-specific annotated methods. On top of registering reflection + * hints for invoking the annotated method, this implementation handles: *