Merge branch '2.7.x'

pull/30890/head
Andy Wilkinson 3 years ago
commit 3db1715694

@ -408,6 +408,11 @@ public abstract class AbstractWebFluxEndpointHandlerMapping extends RequestMappi
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);
}
@Override
public String toString() {
return this.operation.toString();
}
}
private static class WebFluxEndpointHandlerMethod extends HandlerMethod {

Loading…
Cancel
Save