-
Notifications
You must be signed in to change notification settings - Fork 38.6k
Description
Kevin Richards opened SPR-14241 and commented
When AspectJ style aspects are used, the aspects are eagerly converted to Spring Advisors, but the AspectJ aspect object is not eagerly created. It is lazily created at the time of its first use. This can be seen in ReflectiveAspectJAdvisorFactory's use of LazySingletonAspectInstanceFacotryDecorator.
When a singleton Spring bean is created, it grabs the lock of singleton bean map. If, inside its constructor, it calls a function that has an uninitialized aspect wrapped around it, it will then grab the lock in LazySingletonAspectInstanceFactoryDecorator.getAspectInstance.
If, in a different thread (started after some other bean finishes construction), a call is made that invokes the same aspect, which has not yet been initialized, the lock in LazySingletonAspectInstanceFactoryDecorator.getAspectInstance will be acquired and then the singleton aspect bean will be instantiated. This requires going through the singleton bean instantiation code, which acquires the singleton bean map lock.
This leads to a deadlock. I've attached a stack trace from jstack of this situation occurring. I think one potential solution would be to eagerly instantiate the singleton AspectJ aspects, not just the advisors that wrap them.
Affects: 3.2.16, 4.1.7
Attachments:
- deadlock.txt (65.53 kB)
Issue Links:
- Deadlock publishing event while creating listener bean [SPR-12739] #17336 Deadlock publishing event while creating listener bean
- avoid synchronization when AspectJExpressionPointcut.getShadowMatch hits cache [SPR-5668] #10339 avoid synchronization when AspectJExpressionPointcut.getShadowMatch hits cache
- Async advisor retrieval blocks when triggered by singleton init method [SPR-14324] #18896 Async advisor retrieval blocks when triggered by singleton init method
- Deadlock while creating a new thread on bean initialization with transactional code invocation [SPR-14388] #18961 Deadlock while creating a new thread on bean initialization with transactional code invocation
Backported to: 3.2.17