valueOf and Constructor-based conversion of source objects to targetTypes

This commit is contained in:
Keith Donald
2009-11-12 05:25:03 +00:00
parent b5cda8db7b
commit b163f123ce
4 changed files with 118 additions and 3 deletions

View File

@@ -36,7 +36,6 @@ public class DefaultConversionService extends GenericConversionService {
addConverter(String.class, Character.class, new StringToCharacterConverter());
addConverter(String.class, Locale.class, new StringToLocaleConverter());
addConverter(Number.class, Character.class, new NumberToCharacterConverter());
addConverter(Object.class, String.class, new ObjectToStringConverter());
addConverterFactory(String.class, Number.class, new StringToNumberConverterFactory());
addConverterFactory(String.class, Enum.class, new StringToEnumConverterFactory());
addConverterFactory(Number.class, Number.class, new NumberToNumberConverterFactory());

View File

@@ -80,7 +80,9 @@ public class GenericConversionService implements ConversionService, ConverterReg
addGenericConverter(Map.class, Object.class, new MapToObjectConverter(this));
addGenericConverter(Object.class, Object[].class, new ObjectToArrayConverter(this));
addGenericConverter(Object.class, Collection.class, new ObjectToCollectionConverter(this));
addGenericConverter(Object.class, Map.class, new ObjectToMapConverter(this));
addGenericConverter(Object.class, Map.class, new ObjectToMapConverter(this));
addConverter(Object.class, String.class, new ObjectToStringConverter());
addGenericConverter(Object.class, Object.class, new ObjectToObjectGenericConverter());
}
/**

View File

@@ -0,0 +1,70 @@
/*
* Copyright 2002-2009 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.core.convert.support;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import org.springframework.core.convert.ConversionFailedException;
import org.springframework.core.convert.TypeDescriptor;
import org.springframework.util.ClassUtils;
import org.springframework.util.ReflectionUtils;
/**
* Generic Converter that attempts to convert a source Object to a targetType by delegating to methods on the targetType.
* Calls the static valueOf(sourceType) method on the targetType to perform the conversion, if such a method exists.
* Else calls the targetType's Constructor that accepts a single sourceType argument, if such a Constructor exists.
* Else throws a ConversionFailedException.
*
* @author Keith Donald
* @since 3.0
*/
final class ObjectToObjectGenericConverter implements GenericConverter {
public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) {
if (sourceType.isAssignableTo(targetType)) {
return source;
}
Class<?> sourceClass = sourceType.getObjectType();
Class<?> targetClass = targetType.getObjectType();
Object target;
Method method = ClassUtils.getStaticMethod(targetClass, "valueOf", sourceClass);
if (method != null) {
target = ReflectionUtils.invokeMethod(method, null, source);
} else {
Constructor<?> constructor = ClassUtils.getConstructorIfAvailable(targetClass, sourceClass);
if (constructor != null) {
try {
target = constructor.newInstance(source);
} catch (IllegalArgumentException e) {
throw new ConversionFailedException(sourceType, targetType, source, e);
} catch (InstantiationException e) {
throw new ConversionFailedException(sourceType, targetType, source, e);
} catch (IllegalAccessException e) {
throw new ConversionFailedException(sourceType, targetType, source, e);
} catch (InvocationTargetException e) {
throw new ConversionFailedException(sourceType, targetType, source, e);
}
} else {
throw new IllegalStateException("No static valueOf(" + sourceClass.getName()
+ ") method or Constructor(" + sourceClass.getName() + ") exists on " + targetClass.getName());
}
}
return target;
}
}