-
Notifications
You must be signed in to change notification settings - Fork 38.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An infinite wait on a parallel context.getBean() #34672
Comments
It turns out that we only tested circular references within the main bootstrap thread and between the bootstrap thread and an unmanaged thread but not within an unmanaged thread. This has been addressed through an explicit check against the original creation thread now. This revision is available in the latest 6.2.6 snapshot. Please give it an early try! At the same time, we advise against the use of circular references, and actually also against the use of unmanaged threads during init methods. As of 6.2, there is an |
Thank you for such a quick fix. I fully understand that it's not the best practice. Current breakdown is:
|
Thanks for the immediate feedback! Since it is cleaned up in a As for circular references in general, if at all, they should be forced to be resolved within the ordered initialization sequence in the main bootstrap thread. That said, ideally, they should rather be made lazy through |
Hi,
singleton dependency cycle initialized on a parallel thread causes an infinite wait on
this.lenientCreationFinished.await()
.The bean factory must be in
preInstantiationPhase=true
state with asingleton lock
taken while the parallel thread (e.g. spawned from@PostConstruct
) callscontext.getBean("beanWithCycle")
.Under those conditions
DefaultSingletonBeanRegistry.getSingleton
is called twice for thebeanWithCycle
, but the second invocation getsBeanCurrentlyInCreationException
that triggersthis.lenientCreationFinished.await()
which in turn is never notified, because bean is created by the same thread.An example of this situation in https://github.com/justinas-dabravolskas/spring-6.2.5-infinite-wait
Regards,
Justinas
The text was updated successfully, but these errors were encountered: