diff --git a/org.springframework.core/src/main/java/org/springframework/core/convert/support/GenericConversionService.java b/org.springframework.core/src/main/java/org/springframework/core/convert/support/GenericConversionService.java index 23d71bc300f..fcb61d03a49 100644 --- a/org.springframework.core/src/main/java/org/springframework/core/convert/support/GenericConversionService.java +++ b/org.springframework.core/src/main/java/org/springframework/core/convert/support/GenericConversionService.java @@ -406,7 +406,7 @@ public class GenericConversionService implements ConversionService, ConverterReg if (this.conditionalConverters == null) { this.conditionalConverters = new LinkedList(); } - this.conditionalConverters.add((ConditionalGenericConverter) converter); + this.conditionalConverters.addFirst((ConditionalGenericConverter) converter); } else { this.defaultConverter = converter; }