
com.github.mhewedy.expressions.ExpressionsRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-jpa-mongodb-expressions Show documentation
Show all versions of spring-data-jpa-mongodb-expressions Show documentation
Spring Data JPA Mongodb Expressions
The newest version!
package com.github.mhewedy.expressions;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.repository.NoRepositoryBean;
import java.util.List;
@NoRepositoryBean
public interface ExpressionsRepository extends JpaRepository {
List findAll(Expressions expressions);
List findAll(Expressions expressions, Sort sort);
Page findAll(Expressions expressions, Pageable pageable);
long count(Expressions expressions);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy