mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-22 09:09:01 +00:00
Prior to this commit, the `XmlMapper` auto-configuration for Jackson2 would refer to Jackson3's `XmlMapper` instead of Jackson2. This would not only make the condition invalid, but it could also lead to `NoClassDefFoundError` at runtime if the application mixed Jackson 2 and 3 on the classpath. Fixes gh-49015