SpringFactoriesLoader tolerates whitespace around class names
Issue: SPR-17413
This commit is contained in:
parent
83a54dba7e
commit
dd2ce20687
|
@ -19,7 +19,6 @@ package org.springframework.core.io.support;
|
|||
import java.io.IOException;
|
||||
import java.net.URL;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.Enumeration;
|
||||
import java.util.List;
|
||||
|
@ -139,9 +138,10 @@ public final class SpringFactoriesLoader {
|
|||
UrlResource resource = new UrlResource(url);
|
||||
Properties properties = PropertiesLoaderUtils.loadProperties(resource);
|
||||
for (Map.Entry<?, ?> entry : properties.entrySet()) {
|
||||
List<String> factoryClassNames = Arrays.asList(
|
||||
StringUtils.commaDelimitedListToStringArray((String) entry.getValue()));
|
||||
result.addAll((String) entry.getKey(), factoryClassNames);
|
||||
String factoryClassName = ((String) entry.getKey()).trim();
|
||||
for (String factoryName : StringUtils.commaDelimitedListToStringArray((String) entry.getValue())) {
|
||||
result.add(factoryClassName, factoryName.trim());
|
||||
}
|
||||
}
|
||||
}
|
||||
cache.put(classLoader, result);
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2016 the original author or authors.
|
||||
* Copyright 2002-2018 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.
|
||||
|
@ -33,8 +33,7 @@ public class SpringFactoriesLoaderTests {
|
|||
|
||||
@Test
|
||||
public void loadFactoriesInCorrectOrder() {
|
||||
List<DummyFactory> factories = SpringFactoriesLoader
|
||||
.loadFactories(DummyFactory.class, null);
|
||||
List<DummyFactory> factories = SpringFactoriesLoader.loadFactories(DummyFactory.class, null);
|
||||
assertEquals(2, factories.size());
|
||||
assertTrue(factories.get(0) instanceof MyDummyFactory1);
|
||||
assertTrue(factories.get(1) instanceof MyDummyFactory2);
|
||||
|
@ -46,9 +45,9 @@ public class SpringFactoriesLoaderTests {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void loadPackagePrivateFactory() throws Exception {
|
||||
List<DummyPackagePrivateFactory> factories = SpringFactoriesLoader
|
||||
.loadFactories(DummyPackagePrivateFactory.class, null);
|
||||
public void loadPackagePrivateFactory() {
|
||||
List<DummyPackagePrivateFactory> factories =
|
||||
SpringFactoriesLoader.loadFactories(DummyPackagePrivateFactory.class, null);
|
||||
assertEquals(1, factories.size());
|
||||
assertTrue((factories.get(0).getClass().getModifiers() & Modifier.PUBLIC) == 0);
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
org.springframework.core.io.support.DummyFactory=\
|
||||
org.springframework.core.io.support.MyDummyFactory2,\
|
||||
org.springframework.core.io.support.DummyFactory =\
|
||||
org.springframework.core.io.support.MyDummyFactory2, \
|
||||
org.springframework.core.io.support.MyDummyFactory1
|
||||
|
||||
java.lang.String=\
|
||||
|
|
Loading…
Reference in New Issue