updated for change in conversion service api; source type desc now required

master
Keith Donald 15 years ago
parent b2e3837956
commit 45c542e51e
  1. 11
      org.springframework.beans/src/main/java/org/springframework/beans/TypeConverterDelegate.java

@ -166,16 +166,17 @@ class TypeConverterDelegate {
// No custom editor but custom ConversionService specified? // No custom editor but custom ConversionService specified?
ConversionService conversionService = this.propertyEditorRegistry.getConversionService(); ConversionService conversionService = this.propertyEditorRegistry.getConversionService();
if (editor == null && conversionService != null && convertedValue != null) { if (editor == null && conversionService != null && convertedValue != null) {
TypeDescriptor typeDesc; TypeDescriptor sourceTypeDesc = TypeDescriptor.valueOf(convertedValue.getClass());
TypeDescriptor targetTypeDesc;
if (methodParam != null) { if (methodParam != null) {
typeDesc = (descriptor != null ? targetTypeDesc = (descriptor != null ?
new BeanTypeDescriptor(methodParam, descriptor) : new TypeDescriptor(methodParam)); new BeanTypeDescriptor(methodParam, descriptor) : new TypeDescriptor(methodParam));
} }
else { else {
typeDesc = TypeDescriptor.valueOf(requiredType); targetTypeDesc = TypeDescriptor.valueOf(requiredType);
} }
if (conversionService.matches(convertedValue.getClass(), typeDesc)) { if (conversionService.canConvert(sourceTypeDesc, targetTypeDesc)) {
return (T) conversionService.convert(convertedValue, typeDesc); return (T) conversionService.convert(convertedValue, sourceTypeDesc, targetTypeDesc);
} }
} }

Loading…
Cancel
Save