Browse Source

Preserve overridden toString result in HandlerMethod copy constructor

Closes gh-32184
pull/32189/head
Juergen Hoeller 2 years ago
parent
commit
ae17b11b70
  1. 2
      spring-web/src/main/java/org/springframework/web/method/HandlerMethod.java

2
spring-web/src/main/java/org/springframework/web/method/HandlerMethod.java

@ -198,7 +198,7 @@ public class HandlerMethod extends AnnotatedMethod { @@ -198,7 +198,7 @@ public class HandlerMethod extends AnnotatedMethod {
this.responseStatus = handlerMethod.responseStatus;
this.responseStatusReason = handlerMethod.responseStatusReason;
this.resolvedFromHandlerMethod = handlerMethod;
this.description = handlerMethod.description;
this.description = handlerMethod.toString();
}

Loading…
Cancel
Save