DATACMNS-1591 - @Primary is now considered on repository interfaces.

We now elevate the primary annotation from the scanned repository bean definition to the one created for the repository factory. This previously got lost as the former is hidden behind the RepositoryConfiguration interface that previously didn't expose the primary nature of the underlying bean definition.

Original pull request: #410.
This commit is contained in:
Oliver Drotbohm
2019-10-15 10:33:30 +02:00
committed by Mark Paluch
parent d09391c2f8
commit efccf6d480
4 changed files with 73 additions and 0 deletions

View File

@@ -205,4 +205,13 @@ public class DefaultRepositoryConfiguration<T extends RepositoryConfigurationSou
return toImplementationDetectionConfiguration(factory).forRepositoryConfiguration(this);
}
/*
* (non-Javadoc)
* @see org.springframework.data.repository.config.RepositoryConfiguration#isPrimary()
*/
@Override
public boolean isPrimary() {
return definition.isPrimary();
}
}

View File

@@ -130,4 +130,11 @@ public interface RepositoryConfiguration<T extends RepositoryConfigurationSource
* @since 2.1
*/
ImplementationLookupConfiguration toLookupConfiguration(MetadataReaderFactory factory);
/**
* Returns whether the repository is the primary one for its type.
*
* @return
*/
boolean isPrimary();
}

View File

@@ -161,6 +161,8 @@ public class RepositoryConfigurationDelegate {
}
AbstractBeanDefinition beanDefinition = definitionBuilder.getBeanDefinition();
beanDefinition.setPrimary(configuration.isPrimary());
String beanName = configurationSource.generateBeanName(beanDefinition);
if (LOG.isTraceEnabled()) {