As with `@RequestBody`, Spring converts the returned object to a response body by using
an `HttpMessageConverter`. For more information on these converters, see the previous
section and <<rest-message-conversion,Message Converters>>.
section and <<integration.adoc#rest-message-conversion,Message Converters>>.
[[mvc-ann-restcontroller]]
==== Creating REST Controllers with the @RestController annotation
@ -1275,7 +1276,8 @@ World` to the response stream, and sets the response status code to 201 (Created
@@ -1275,7 +1276,8 @@ World` to the response stream, and sets the response status code to 201 (Created
As with `@RequestBody` and `@ResponseBody`, Spring uses `HttpMessageConverter` to
convert from and to the request and response streams. For more information on these
converters, see the previous section and <<rest-message-conversion,Message Converters>>.
converters, see the previous section and <<integration.adoc#rest-message-conversion,