Example usage for org.springframework.data.jpa.repository JpaSpecificationExecutor interface-usage

List of usage examples for org.springframework.data.jpa.repository JpaSpecificationExecutor interface-usage

Introduction

In this page you can find the example usage for org.springframework.data.jpa.repository JpaSpecificationExecutor interface-usage.

Usage

From source file edu.pitt.dbmi.ccd.db.repository.AnnotationTargetRepository.java

/**
 * @author Mark Silvis (marksilvis@pitt.edu)
 */
@Repository
@RepositoryRestResource(exported = false)
public interface AnnotationTargetRepository

From source file edu.pitt.dbmi.ccd.db.repository.GroupRepository.java

/**
 * @author Mark Silvis (marksilvis@pitt.edu)
 */
@Repository
@RepositoryRestResource(exported = false)
public interface GroupRepository extends JpaRepository<Group, Long>, JpaSpecificationExecutor<Group> {

From source file edu.chalmers.dat076.moviefinder.persistence.SeriesRepository.java

/**
 * A Series repository. Note that this interface is automatically implemented
 * by spring-data. The method names are used by spring to generate the queries,
 * see http://docs.spring.io/spring-data/jpa/docs/1.7.0.RELEASE/reference/html/#jpa.query-methods
 * for all available query methods.
 * 

From source file edu.chalmers.dat076.moviefinder.persistence.EpisodeRepository.java

/**
 * A Episode repository. Note that this interface is automatically implemented
 * by spring-data. The method names are used by spring to generate the queries,
 * see http://docs.spring.io/spring-data/jpa/docs/1.7.0.RELEASE/reference/html/#jpa.query-methods
 * for all available query methods.
 * 

From source file edu.chalmers.dat076.moviefinder.persistence.MovieRepository.java

/**
 * A movie repository. Note that this interface is automatically implemented by
 * spring-data. The method names are used by spring to generate the queries, see
 * http://docs.spring.io/spring-data/jpa/docs/1.7.0.RELEASE/reference/html/#jpa.query-methods
 * for all available query methods.
 *

From source file org.springframework.data.jpa.repository.support.SimpleJpaRepository.java

/**
 * Default implementation of the {@link org.springframework.data.repository.CrudRepository} interface. This will offer
 * you a more sophisticated interface than the plain {@link EntityManager} .
 * 
 * @author Oliver Gierke
 * @author Eberhard Wolff

From source file com.uni.dao.etc.UniJpaRepository.java

/**
 * Default implementation of the {@link org.springframework.data.repository.CrudRepository} interface. This will offer
 * you a more sophisticated interface than the plain {@link EntityManager} .
 * 
 * @author Oliver Gierke
 * @author Eberhard Wolff