We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 19fca0c + 78bf0cc commit e13d4e4Copy full SHA for e13d4e4
1 file changed
docs/Spring/IoC/1、BeanDefinition的资源定位过程.md
@@ -261,7 +261,7 @@ AbstractBeanDefinitionReader 中对 loadBeanDefinitions 方法的各种重载及
261
*/
262
public int loadBeanDefinitions(String... locations) throws BeanDefinitionStoreException {
263
Assert.notNull(locations, "Location array must not be null");
264
- // 计数器,统计加载了多少个配置文件
+ // 计数器,统计加载了多少个BeanDefinition
265
int counter = 0;
266
for (String location : locations) {
267
counter += loadBeanDefinitions(location);
0 commit comments