• P
    Fix GenericConversionService search algorithm · 1abb7f66
    Phillip Webb 提交于
    Previously the algorithm used by GenericConversionService to find
    converters incorrectly searched for interfaces working up from the
    base class. This caused particular problems with custom List
    converters as as the Collection interface would be considered before
    the List interface giving CollectionToObjectConverter precedence
    over the custom converter.
    
    The updated algorithm restores the class search order to behave in the
    same way as Spring 3.1.
    
    Issue: SPR-10116
    Backport-Issue: SPR-10117
    Backport-Commit: aa914497
    1abb7f66
GenericConversionServiceTests.java 28.5 KB