Skip to content

Commit 180c640

Browse files
committed
Consider primary repository definition in Repositories when created Repositories using ApplicationContext.
Closes #1583. Original pull request: #465.
1 parent 8cdf602 commit 180c640

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

src/main/java/org/springframework/data/repository/support/Repositories.java

+15-4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import org.springframework.beans.factory.ListableBeanFactory;
3030
import org.springframework.beans.factory.config.BeanDefinition;
3131
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
32+
import org.springframework.context.ConfigurableApplicationContext;
3233
import org.springframework.data.mapping.PersistentEntity;
3334
import org.springframework.data.mapping.context.MappingContext;
3435
import org.springframework.data.repository.core.EntityInformation;
@@ -276,10 +277,20 @@ private void cacheFirstOrPrimary(Class<?> type, RepositoryFactoryInformation inf
276277

277278
if (repositoryBeanNames.containsKey(type)) {
278279

279-
Boolean presentAndPrimary = beanFactory //
280-
.filter(ConfigurableListableBeanFactory.class::isInstance) //
281-
.map(ConfigurableListableBeanFactory.class::cast) //
282-
.map(it -> it.getBeanDefinition(name)) //
280+
Optional<ConfigurableListableBeanFactory> factoryToUse = this.beanFactory.map(it -> {
281+
282+
if (it instanceof ConfigurableListableBeanFactory) {
283+
return (ConfigurableListableBeanFactory) it;
284+
}
285+
286+
if (it instanceof ConfigurableApplicationContext) {
287+
return ((ConfigurableApplicationContext) it).getBeanFactory();
288+
}
289+
290+
return null;
291+
});
292+
293+
Boolean presentAndPrimary = factoryToUse.map(it -> it.getBeanDefinition(name)) //
283294
.map(BeanDefinition::isPrimary) //
284295
.orElse(false);
285296

0 commit comments

Comments
 (0)