Merge branch '2.6.x' into 2.7.x

Closes gh-30887
This commit is contained in:
Andy Wilkinson 2022-05-06 18:15:20 +01:00
commit 833e3aec27

View File

@ -408,6 +408,11 @@ public abstract class AbstractWebFluxEndpointHandlerMapping extends RequestMappi
return this.operation.handle(exchange, body); return this.operation.handle(exchange, body);
} }
@Override
public String toString() {
return this.operation.toString();
}
} }
/** /**
@ -426,6 +431,11 @@ public abstract class AbstractWebFluxEndpointHandlerMapping extends RequestMappi
return this.operation.handle(exchange, null); return this.operation.handle(exchange, null);
} }
@Override
public String toString() {
return this.operation.toString();
}
} }
private static class WebFluxEndpointHandlerMethod extends HandlerMethod { private static class WebFluxEndpointHandlerMethod extends HandlerMethod {