+ add implicit (String) type for typed string values w/o a specified type

master
Costin Leau 15 years ago
parent c870e01757
commit 015284af7c
  1. 7
      org.springframework.beans/src/main/java/org/springframework/beans/factory/support/ConstructorResolver.java

@ -681,15 +681,8 @@ class ConstructorResolver {
}
}
args.arguments[paramIndex] = convertedValue;
if (mbd.isLenientConstructorResolution()) {
args.rawArguments[paramIndex] = originalValue;
}
else {
args.rawArguments[paramIndex] =
((sourceValue instanceof TypedStringValue && !((TypedStringValue) sourceValue).hasTargetType()) ?
convertedValue : originalValue);
}
}
else {
// No explicit match found: we're either supposed to autowire or
// have to fail creating an argument array for the given constructor.

Loading…
Cancel
Save