Polishing in MultipartFileArgumentResolver

Closes gh-30728
This commit is contained in:
rstoyanchev
2023-06-27 10:51:42 +01:00
parent e69a1d22f9
commit 40bf923d7d
4 changed files with 43 additions and 44 deletions

View File

@@ -190,7 +190,7 @@ public class WebClientHttpServiceProxyTests {
@PostExchange(contentType = "application/x-www-form-urlencoded")
void postForm(@RequestParam MultiValueMap<String, String> params);
@PostExchange(contentType = MediaType.MULTIPART_FORM_DATA_VALUE)
@PostExchange
void postMultipart(MultipartFile file, @RequestPart String anotherPart);
}