mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-20 04:09:04 +00:00
Prior to this commit, `DefaultFormattingConversionService` would register converters with both `DateTimeFormatterRegistrar` and `DateFormatterRegistrar`, the former also registering the legace date converters that the latter contributes. While we cannot change the behavior for `DateTimeFormatterRegistrar` or `DateFormatterRegistrar` because of their public contract, we can update the `DefaultFormattingConversionService` to not use `DateFormatterRegistrar` and register manually the annotation support that it contributes. Closes gh-36951