Fix exception message in getMergedBeanDefinition

Closes gh-24686

Co-authored-by: Sam Brannen <sbrannen@pivotal.io>
This commit is contained in:
Qimiao Chen
2020-03-13 16:47:57 +08:00
committed by GitHub
parent a599859595
commit 201827cb0b

View File

@@ -1343,7 +1343,7 @@ public abstract class AbstractBeanFactory extends FactoryBeanRegistrySupport imp
else {
throw new NoSuchBeanDefinitionException(parentBeanName,
"Parent name '" + parentBeanName + "' is equal to bean name '" + beanName +
"': cannot be resolved without an AbstractBeanFactory parent");
"': cannot be resolved without a ConfigurableBeanFactory parent");
}
}
}