Add recommendation for original multipart filename

See gh-26299
This commit is contained in:
Rossen Stoyanchev
2021-01-12 17:28:44 +00:00
parent c3c36ab498
commit a7413ea76b
3 changed files with 8 additions and 4 deletions

View File

@@ -3002,8 +3002,8 @@ for the body. This allows a variety of async responses with `ResponseEntity` as
asynchronously at a later point. This allows the response status and headers to vary
depending on the outcome of asynchronous request handling.
* `Mono<ResponseEntity<Mono<T>>>` or `Mono<ResponseEntity<Flux<T>>>` are yet another
possible, albeit less common alternative. They provides the response status and headers
asynchronously first and then the response body, also asynchronously at a second point later.
possible, albeit less common alternative. They provide the response status and headers
asynchronously first and then the response body, also asynchronously, second.
[[webflux-ann-jackson]]