Interface ReadOnlyRepository<T,ID>

All Superinterfaces:
org.springframework.data.repository.Repository<T,ID>
All Known Subinterfaces:
MDStoreWithInfoRepository

@NoRepositoryBean public interface ReadOnlyRepository<T,ID> extends org.springframework.data.repository.Repository<T,ID>
  • Method Details

    • findById

      Optional<T> findById(ID id)
    • existsById

      boolean existsById(ID id)
    • findAll

      Iterable<T> findAll()
    • count

      long count()