Address race condition within spring that causes about-to-be-created-bean exceptions [SPR-16627] #21168
Labels
in: core
Issues in core modules (aop, beans, core, context, expression)
status: backported
An issue that has been backported to maintenance branches
type: bug
A general bug
Milestone
Brian Toal opened SPR-16627 and commented
Typically DefaultListableBeanFactory.doGetBeanNamesForType is triggered via ApplicationContext.refresh via EventListenerMethodProcessor.getEventListnerFactories() in a single thread prior to when the application context is available for use. See typical stack:
However in application thats setup doesn't cause DefaultListableBeanFactory.doGetBeanNamesForType to run prior to AC.refresh finishing, then there is thread safety issue when two threads race calling DefaultListableBeanFactory.getBeanNamesForType
To prevent this from happening the proposed change is to always have AbstractAutowireCapableBeanFactory.getSingletonFactoryBeanForTypeCheck check after it acquires the mutex if the singleton factory bean has been added in the registry, guarding it from failing with ImplicitlyAppeardSingletonException when another thread added the factory bean to the registry sometime between t1 and t5.
See the following project of an example of how this issue is reproduced:
https://github.com/toaler/spring-race-issue
Specifically:
https://github.com/toaler/spring-race-issue/blob/master/src/test/java/sandbox/SpringCreateFactoryBeanSingletonRaceTest.java
A potential fix for this issue has been submitted here. If you flip the spring version using in the maven pom from existing version, to the version built from the PR, you'll see the about-to-be-created-bean exception without the fix, and normal behavior with the fix.
#1750
Affects: 4.3.14, 5.0.3
Issue Links:
Referenced from: pull request #1750
Backported to: 4.3.15
The text was updated successfully, but these errors were encountered: