Uses of Interface
org.springframework.data.repository.core.support.RepositoryProxyPostProcessor
Packages that use RepositoryProxyPostProcessor
Package
Description
Base classes to implement CDI support for repositories.
Base classes to implement repositories for various data stores.
-
Uses of RepositoryProxyPostProcessor in org.springframework.data.repository.cdi
Methods in org.springframework.data.repository.cdi that return types with arguments of type RepositoryProxyPostProcessorModifier and TypeMethodDescriptiondefault List<RepositoryProxyPostProcessor>
CdiRepositoryConfiguration.getRepositoryProxyPostProcessors()
Returns the list ofRepositoryProxyPostProcessor
to be used during repository proxy creation. -
Uses of RepositoryProxyPostProcessor in org.springframework.data.repository.core.support
Classes in org.springframework.data.repository.core.support that implement RepositoryProxyPostProcessorModifier and TypeClassDescriptionclass
RepositoryProxyPostProcessor
to register aMethodInterceptor
to interceptCrudRepository.save(Object)
andCrudRepository.delete(Object)
methods and publish events potentially exposed via a method annotated withDomainEvents
.class
RepositoryProxyPostProcessor
to register aPersistenceExceptionTranslationInterceptor
on the repository proxy.Methods in org.springframework.data.repository.core.support with parameters of type RepositoryProxyPostProcessorModifier and TypeMethodDescriptionvoid
RepositoryFactorySupport.addRepositoryProxyPostProcessor
(RepositoryProxyPostProcessor processor) AddsRepositoryProxyPostProcessor
s to the factory to allow manipulation of theProxyFactory
before the proxy gets created.