Uses of Class
org.springframework.data.repository.core.support.RepositoryFactorySupport
Packages that use RepositoryFactorySupport
Package
Description
Base classes to implement CDI support for repositories.
Base classes to implement repositories for various data stores.
-
Uses of RepositoryFactorySupport in org.springframework.data.repository.cdi
Methods in org.springframework.data.repository.cdi with parameters of type RepositoryFactorySupportModifier and TypeMethodDescriptionprotected voidCdiRepositoryBean.applyConfiguration(RepositoryFactorySupport repositoryFactory) Applies the configuration fromCdiRepositoryConfigurationtoRepositoryFactorySupportby looking up the actual configuration.protected static voidCdiRepositoryBean.applyConfiguration(RepositoryFactorySupport repositoryFactory, CdiRepositoryConfiguration configuration) Applies the configuration fromCdiRepositoryConfigurationtoRepositoryFactorySupportby looking up the actual configuration.protected static <T> TCdiRepositoryBean.create(RepositoryFactorySupport repositoryFactory, Class<T> repositoryType, RepositoryComposition.RepositoryFragments repositoryFragments) Creates the actual repository instance.Method parameters in org.springframework.data.repository.cdi with type arguments of type RepositoryFactorySupportModifier and TypeMethodDescriptionprotected TCdiRepositoryBean.create(Supplier<? extends RepositoryFactorySupport> factorySupplier, Class<T> repositoryType) Creates the actual component instance given arepository factory supplierand the repositorytype. -
Uses of RepositoryFactorySupport in org.springframework.data.repository.core.support
Subclasses of RepositoryFactorySupport in org.springframework.data.repository.core.supportModifier and TypeClassDescriptionclassBase class for repository factories to use reactive support.Methods in org.springframework.data.repository.core.support that return RepositoryFactorySupportModifier and TypeMethodDescriptionprotected abstract RepositoryFactorySupportRepositoryFactoryBeanSupport.createRepositoryFactory()Create the actualRepositoryFactorySupportinstance.protected final RepositoryFactorySupportTransactionalRepositoryFactoryBeanSupport.createRepositoryFactory()DelegatesRepositoryFactorySupportcreation toTransactionalRepositoryFactoryBeanSupport.doCreateRepositoryFactory()and applies theTransactionalRepositoryProxyPostProcessorto the created instance.protected abstract RepositoryFactorySupportTransactionalRepositoryFactoryBeanSupport.doCreateRepositoryFactory()Creates the actualRepositoryFactorySupportinstance.Methods in org.springframework.data.repository.core.support with parameters of type RepositoryFactorySupportModifier and TypeMethodDescriptionvoidRepositoryFactoryCustomizer.customize(RepositoryFactorySupport repositoryFactory) Callback to customize aRepositoryFactorySupportinstance.