Add @RequestMapping produces documentation about charset

Issue: SPR-13600
This commit is contained in:
Sebastien Deleuze
2015-11-02 07:48:02 +01:00
parent 4aedd92c3c
commit 62cd6ad526
2 changed files with 14 additions and 3 deletions

View File

@@ -1028,13 +1028,21 @@ condition. For example:
[subs="verbatim,quotes"]
----
@Controller
@RequestMapping(path = "/pets/{petId}", method = RequestMethod.GET, **produces="application/json"**)
@RequestMapping(path = "/pets/{petId}", method = RequestMethod.GET, **produces="application/json; charset=UTF-8"**)
@ResponseBody
public Pet getPet(@PathVariable String petId, Model model) {
// implementation omitted
}
----
[NOTE]
====
Be aware that the media type specified in the __produces__ condition can also optionally
specify a character set. For example, in the code snippet above we specify the same media
type than the default one configured in `MappingJackson2HttpMessageConverter`, including
the `UTF-8` charset.
====
Just like with __consumes__, producible media type expressions can be negated as in
__!text/plain__ to match to all requests other than those with an __Accept__ header
value of __text/plain__.
@@ -3847,7 +3855,7 @@ When writing error information, the status code and the error message set on the
@Controller
public class ErrorController {
@RequestMapping(path="/error", produces="application/json")
@RequestMapping(path="/error", produces="application/json; charset=UTF-8")
@ResponseBody
public Map<String, Object> handle(HttpServletRequest request) {