Fix multi-part form handling for WebFlux apps

In WebFlux (but not MVC) you have to explicitly ask for the multi-
part content separately from the form data.

Fixes gh-223
This commit is contained in:
Dave Syer
2018-10-26 09:53:17 +01:00
parent a735f50daa
commit bf9ab3ac0a
4 changed files with 43 additions and 5 deletions

View File

@@ -92,7 +92,7 @@ public class SampleApplicationTests {
}
@Test
@Ignore
// @Ignore
public void multipart() throws Exception {
LinkedMultiValueMap<String, String> map = new LinkedMultiValueMap<>();