Skip to content

Commit

Permalink
Document that HttpMessageConverters can be used for reordering/removal
Browse files Browse the repository at this point in the history
Closes gh-40767
  • Loading branch information
wilkinsona committed May 20, 2024
1 parent f5262d8 commit 1d91757
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2069,7 +2069,8 @@
{
"name": "spring.mvc.converters.preferred-json-mapper",
"type": "java.lang.String",
"description": "Preferred JSON mapper to use for HTTP message conversion. By default, auto-detected according to the environment."
"defaultValue": "jackson",
"description": "Preferred JSON mapper to use for HTTP message conversion. By default, auto-detected according to the environment. Supported values are 'jackson', 'gson', and 'jsonb'. When other json mapping libraries (such as kotlinx.serialization) are present, use a custom HttpMessageConverters bean to control the preferred mapper."
},
{
"name": "spring.mvc.date-format",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,15 @@ Sensible defaults are included out of the box.
For example, objects can be automatically converted to JSON (by using the Jackson library) or XML (by using the Jackson XML extension, if available, or by using JAXB if the Jackson XML extension is not available).
By default, strings are encoded in `UTF-8`.

Any `HttpMessageConverter` bean that is present in the context is added to the list of converters.
You can also override default converters in the same way.

If you need to add or customize converters, you can use Spring Boot's `HttpMessageConverters` class, as shown in the following listing:

include::code:MyHttpMessageConvertersConfiguration[]

Any `HttpMessageConverter` bean that is present in the context is added to the list of converters.
You can also override default converters in the same way.
For further control, you can also sub-class `HttpMessageConverters` and override its `postProcessConverters` and/or `postProcessPartConverters` methods.
This can be useful when you want to re-order or remove some of the converters that Spring MVC configures by default.



Expand Down

0 comments on commit 1d91757

Please sign in to comment.