Browse Source
The `AbstractHttpMessageConverter#supportsRepeatableWrites` contract is a protected method that message converters can override. This method tells whether the current converter can write several times the payload given as a parameter. This is mainly useful on the client side, where we need to know if we can send the same HTTP message again, after receiving an HTTP redirect status. Because this method is protected, this limits our ability to call it from a different package; this is needed for gh-33263. This commit promotes this method to the main `HttpMessageConverter` interface and deprecates the former. Closes gh-36252pull/36549/head
20 changed files with 134 additions and 23 deletions
Loading…
Reference in new issue