Interface JpaRepositoryImplementation<T,ID>

All Superinterfaces:
org.springframework.data.repository.CrudRepository<T,ID>, JpaRepository<T,ID>, JpaSpecificationExecutor<T>, org.springframework.data.repository.ListCrudRepository<T,ID>, org.springframework.data.repository.ListPagingAndSortingRepository<T,ID>, org.springframework.data.repository.PagingAndSortingRepository<T,ID>, org.springframework.data.repository.query.QueryByExampleExecutor<T>, org.springframework.data.repository.Repository<T,ID>
All Known Implementing Classes:
QuerydslJpaRepository, SimpleJpaRepository

@NoRepositoryBean public interface JpaRepositoryImplementation<T,ID> extends JpaRepository<T,ID>, JpaSpecificationExecutor<T>
SPI interface to be implemented by JpaRepository implementations.
Author:
Oliver Gierke, Stefan Fussenegger, Jens Schauder
  • Method Details

    • setRepositoryMethodMetadata

      void setRepositoryMethodMetadata(CrudMethodMetadata crudMethodMetadata)
      Configures the CrudMethodMetadata to be used with the repository.
      Parameters:
      crudMethodMetadata - must not be null.
    • setEscapeCharacter

      default void setEscapeCharacter(EscapeCharacter escapeCharacter)
      Configures the EscapeCharacter to be used with the repository.
      Parameters:
      escapeCharacter - Must not be null.