ConstructorResolver always uses arguments when completely provided
Issue: SPR-13808
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2014 the original author or authors.
|
||||
* Copyright 2002-2015 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.
|
||||
@@ -683,7 +683,7 @@ class ConstructorResolver {
|
||||
// If we couldn't find a direct match and are not supposed to autowire,
|
||||
// let's try the next generic, untyped argument value as fallback:
|
||||
// it could match after type conversion (for example, String -> int).
|
||||
if (valueHolder == null && !autowiring) {
|
||||
if (valueHolder == null && (!autowiring || paramTypes.length == resolvedValues.getArgumentCount())) {
|
||||
valueHolder = resolvedValues.getGenericArgumentValue(null, null, usedValueHolders);
|
||||
}
|
||||
if (valueHolder != null) {
|
||||
|
||||
Reference in New Issue
Block a user