Use URLDecoder for query params in WebFlux

Issue: SPR-15860
This commit is contained in:
Rossen Stoyanchev
2017-08-16 13:34:31 +02:00
parent 8b7a670821
commit 645e3492db
3 changed files with 21 additions and 5 deletions

View File

@@ -63,7 +63,7 @@ public class RequestMappingIntegrationTests extends AbstractRequestMappingIntegr
@Test // SPR-15140
public void handleWithEncodedParam() throws Exception {
String expected = "Hello ++\u00e0!";
String expected = "Hello + \u00e0!";
assertEquals(expected, performGet("/param?name=%20%2B+%C3%A0", new HttpHeaders(), String.class).getBody());
}