Uses of Class
org.springframework.data.repository.core.support.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
Modifier and TypeMethodDescriptionprotected void
CdiRepositoryBean.applyConfiguration
(RepositoryFactorySupport repositoryFactory) Applies the configuration fromCdiRepositoryConfiguration
toRepositoryFactorySupport
by looking up the actual configuration.protected static void
CdiRepositoryBean.applyConfiguration
(RepositoryFactorySupport repositoryFactory, CdiRepositoryConfiguration configuration) Applies the configuration fromCdiRepositoryConfiguration
toRepositoryFactorySupport
by looking up the actual configuration.protected static <T> T
CdiRepositoryBean.create
(RepositoryFactorySupport repositoryFactory, Class<T> repositoryType, RepositoryComposition.RepositoryFragments repositoryFragments) Creates the actual repository instance.Modifier and TypeMethodDescriptionprotected T
CdiRepositoryBean.create
(Supplier<? extends RepositoryFactorySupport> factorySupplier, Class<T> repositoryType) Creates the actual component instance given arepository factory supplier
and the repositorytype
. -
Uses of RepositoryFactorySupport in org.springframework.data.repository.core.support
Modifier and TypeClassDescriptionclass
Base class for repository factories to use reactive support.Modifier and TypeMethodDescriptionprotected abstract RepositoryFactorySupport
RepositoryFactoryBeanSupport.createRepositoryFactory()
Create the actualRepositoryFactorySupport
instance.protected final RepositoryFactorySupport
TransactionalRepositoryFactoryBeanSupport.createRepositoryFactory()
DelegatesRepositoryFactorySupport
creation toTransactionalRepositoryFactoryBeanSupport.doCreateRepositoryFactory()
and applies theTransactionalRepositoryProxyPostProcessor
to the created instance.protected abstract RepositoryFactorySupport
TransactionalRepositoryFactoryBeanSupport.doCreateRepositoryFactory()
Creates the actualRepositoryFactorySupport
instance.Modifier and TypeMethodDescriptionvoid
RepositoryFactoryCustomizer.customize
(RepositoryFactorySupport repositoryFactory) Callback to customize aRepositoryFactorySupport
instance.