mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-20 06:29:16 +00:00
Previously, the auto-configured JsonMapper would back off when any type of ObjectMapper was defined. Updating this was missed as part of the move to Jackson 3 where both Boot and Framework now intend to use the more specific JsonMapper type. This commit updates the condition such that a JsonMapper will still be auto-configured when any other type of ObjectMapper is definied. It will now only back off when a JsonMapper bean is defined. Closes gh-47379