Uses of Class
org.springframework.data.repository.core.support.RepositoryComposition
Packages that use RepositoryComposition
Package
Description
Base classes to implement repositories for various data stores.
-
Uses of RepositoryComposition in org.springframework.data.repository.core.support
Methods in org.springframework.data.repository.core.support that return RepositoryCompositionModifier and TypeMethodDescriptionRepositoryComposition.append(RepositoryComposition.RepositoryFragments fragments) Create a newRepositoryCompositionretaining current configuration and appendRepositoryComposition.RepositoryFragmentsto the new composition.RepositoryComposition.append(RepositoryFragment<?> fragment) Create a newRepositoryCompositionretaining current configuration and appendRepositoryFragmentto the new composition.static RepositoryCompositionRepositoryComposition.empty()Create an emptyRepositoryComposition.static RepositoryCompositionRepositoryComposition.fromMetadata(RepositoryMetadata metadata) Create anRepositoryCompositionusing the providedRepositoryMetadatato setmethod lookupsdepending in the repository type (reactive/imperative).static RepositoryCompositionCreate aRepositoryCompositionfor just a singleimplementationwithMethodLookups#direct()method lookup.static RepositoryCompositionRepositoryComposition.of(List<RepositoryFragment<?>> fragments) static RepositoryCompositionRepositoryComposition.of(RepositoryComposition.RepositoryFragments fragments) Create aRepositoryCompositionfromRepositoryComposition.RepositoryFragmentsandRepositoryMetadatawithMethodLookups#direct()method lookup.static RepositoryCompositionRepositoryComposition.of(RepositoryFragment<?>... fragments) RepositoryComposition.withArgumentConverter(BiFunction<Method, Object[], Object[]> argumentConverter) Create a newRepositoryCompositionretaining current configuration and setargumentConverter.RepositoryComposition.withMetadata(RepositoryMetadata metadata) Create a newRepositoryCompositionretaining current configuration and setmetadata.RepositoryComposition.withMethodLookup(MethodLookup methodLookup) Create a newRepositoryCompositionretaining current configuration and setmethodLookup.