diff --git a/src/docs/asciidoc/web/webflux-functional.adoc b/src/docs/asciidoc/web/webflux-functional.adoc index c452c6df81e..fff2256e856 100644 --- a/src/docs/asciidoc/web/webflux-functional.adoc +++ b/src/docs/asciidoc/web/webflux-functional.adoc @@ -164,6 +164,15 @@ URI location = ... ServerResponse.created(location).build(); ---- +Depending on the codec used, it is possible to pass hint parameters to customize how the +body is serialized or deserialized. For example, to specify a https://wiki.fasterxml.com/JacksonJsonViews[Jackson JSON view]: + +==== +[source,java] +---- +ServerResponse.ok().hint(Jackson2CodecSupport.JSON_VIEW_HINT, MyJacksonView.class).body(...); +---- +==== [[webflux-fn-handler-classes]]