From 24ed325c0cc8fb0758a166608b7b6ff834e40fa9 Mon Sep 17 00:00:00 2001 From: Arjan van Bentem Date: Wed, 13 Feb 2013 11:40:40 -0800 Subject: [PATCH] Add HttpPutFormContentFilter note to documentation Update reference guide to include a note about the use of HttpPutFormContentFilter in combination with @RequestBody MultiValueMap and HttpEntity. Issue: SPR-8415 --- src/reference/docbook/mvc.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/reference/docbook/mvc.xml b/src/reference/docbook/mvc.xml index 021249cf57..7fbd023ac8 100644 --- a/src/reference/docbook/mvc.xml +++ b/src/reference/docbook/mvc.xml @@ -2157,6 +2157,14 @@ public class EditPetForm { available through the ServletRequest.getParameter*() family of methods. + + + As HttpPutFormContentFilter consumes the body of the + request, it should not be configured for PUT or PATCH URLs that rely on other + converters for application/x-www-form-urlencoded. This includes + @RequestBody MultiValueMap<String, String> and + HttpEntity<MultiValueMap<String, String>>. +