From 12018fb0b08911808466e8dd0373bbf0a8fc6fcd Mon Sep 17 00:00:00 2001 From: Yurii Platunov Date: Wed, 4 Feb 2026 00:08:43 +0200 Subject: [PATCH] Fix formatting in Web MVC HTTP Message Conversion documentation Signed-off-by: Yurii Platunov --- .../modules/ROOT/pages/web/webmvc/message-converters.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework-docs/modules/ROOT/pages/web/webmvc/message-converters.adoc b/framework-docs/modules/ROOT/pages/web/webmvc/message-converters.adoc index d1f8f09c3f0f..d65c68aab7f3 100644 --- a/framework-docs/modules/ROOT/pages/web/webmvc/message-converters.adoc +++ b/framework-docs/modules/ROOT/pages/web/webmvc/message-converters.adoc @@ -45,7 +45,7 @@ By default, this converter supports `text/xml` and `application/xml`. | `JacksonJsonHttpMessageConverter` | An `HttpMessageConverter` implementation that can read and write JSON by using Jackson's `JsonMapper`. You can customize JSON mapping as needed through the use of Jackson's provided annotations. -When you need further control (for cases where custom JSON serializers/deserializers need to be provided for specific types), you can inject a custom `JsonMapper` through the `JsonMapper` or `JsonMapper.Builder ` constructor parameters. +When you need further control (for cases where custom JSON serializers/deserializers need to be provided for specific types), you can inject a custom `JsonMapper` through the `JsonMapper` or `JsonMapper.Builder` constructor parameters. By default, this converter supports `application/json`. This requires the `tools.jackson.core:jackson-databind` dependency. | `JacksonXmlHttpMessageConverter`