File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
spring-beans/src/main/java/org/springframework/beans/factory/support Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -212,6 +212,15 @@ public Executable resolveConstructorOrFactoryMethod() {
212
212
.resolveConstructorOrFactoryMethod (getBeanName (), getMergedBeanDefinition ());
213
213
}
214
214
215
+ /**
216
+ * Resolve an autowired argument.
217
+ * @param descriptor the descriptor for the dependency (field/method/constructor)
218
+ * @param typeConverter the TypeConverter to use for populating arrays and collections
219
+ * @param autowiredBeans a Set that all names of autowired beans (used for
220
+ * resolving the given dependency) are supposed to be added to
221
+ * @return the resolved object, or {@code null} if none found
222
+ * @since 6.0.9
223
+ */
215
224
@ Nullable
216
225
public Object resolveAutowiredArgument (DependencyDescriptor descriptor , TypeConverter typeConverter ,
217
226
Set <String > autowiredBeans ) {
You can’t perform that action at this time.
0 commit comments