You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to bootstrap a repository can lead to a NullPointerException in RepositoryFactoryBeanSupport.getObject(…).
What happens:
RepositoryFactoryBean gets initialized in afterPropertiesSet()
Initialization requests the type from the MappingContext
MappingContext publishes an application event
ApplicationEventMulticaster looks up event listeners from the context
Bean lookup calls getObject(…) method on the RepositoryFactoryBean that is currently initialized. The repository field was not yet set therefore the call fails with an NPE
We now assign the repository field before resolving the persistent entity through the mapping context to avoid a potential NPE caused by a getObject(…) invocation through an application event.
Closes#2068
We now assign the repository field before resolving the persistent entity through the mapping context to avoid a potential NPE caused by a getObject(…) invocation through an application event.
Closes#2068
Mark Paluch opened DATACMNS-1642 and commented
Trying to bootstrap a repository can lead to a
NullPointerException
inRepositoryFactoryBeanSupport.getObject(…)
.What happens:
afterPropertiesSet()
MappingContext
MappingContext
publishes an application eventApplicationEventMulticaster
looks up event listeners from the contextgetObject(…)
method on the RepositoryFactoryBean that is currently initialized. Therepository
field was not yet set therefore the call fails with an NPEStack trace and reproducer are attached
Affects: 2.2.3 (Moore SR3)
Attachments:
The text was updated successfully, but these errors were encountered: