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

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

@ -681,14 +681,7 @@ class ConstructorResolver {
} }
} }
args.arguments[paramIndex] = convertedValue; args.arguments[paramIndex] = convertedValue;
if (mbd.isLenientConstructorResolution()) { args.rawArguments[paramIndex] = originalValue;
args.rawArguments[paramIndex] = originalValue;
}
else {
args.rawArguments[paramIndex] =
((sourceValue instanceof TypedStringValue && !((TypedStringValue) sourceValue).hasTargetType()) ?
convertedValue : originalValue);
}
} }
else { else {
// No explicit match found: we're either supposed to autowire or // No explicit match found: we're either supposed to autowire or

Loading…
Cancel
Save