Allow package private classes in spring.factories
Update SpringFactoriesLoader so that package private classes can be used. Issue: SPR-13969
This commit is contained in:
9
spring-core/src/test/resources/META-INF/spring.factories
Normal file
9
spring-core/src/test/resources/META-INF/spring.factories
Normal file
@@ -0,0 +1,9 @@
|
||||
org.springframework.core.io.support.DummyFactory=\
|
||||
org.springframework.core.io.support.MyDummyFactory2,\
|
||||
org.springframework.core.io.support.MyDummyFactory1
|
||||
|
||||
java.lang.String=\
|
||||
org.springframework.core.io.support.MyDummyFactory1
|
||||
|
||||
org.springframework.core.io.support.DummyPackagePrivateFactory=\
|
||||
org.springframework.core.io.support.DummyPackagePrivateFactory
|
||||
@@ -1,2 +0,0 @@
|
||||
org.springframework.core.io.support.DummyFactory=org.springframework.core.io.support.MyDummyFactory2,org.springframework.core.io.support.MyDummyFactory1
|
||||
java.lang.String=org.springframework.core.io.support.MyDummyFactory1
|
||||
Reference in New Issue
Block a user