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 com.ebiz.modules.persistence.repository.MyRepository.java

/**
 * RepositoryRopository?
 * 
 * @author jinqinghua@gmail.com
 * @version 20131210 ?2:48:02
 * @see "http://docs.spring.io/spring-data/data-jpa/docs/current/reference/htmlsingle/#repositories.custom-behaviour-for-all-repositories"

From source file me.adaptive.core.data.repo.WorkspaceEntityRepository.java

/**
 * Created by panthro on 04/06/15.
 */
@Repository
public interface WorkspaceEntityRepository
        extends JpaRepository<WorkspaceEntity, Long>, JpaSpecificationExecutor<WorkspaceEntity> {

From source file org.unidle.repository.QuestionRepository.java

public interface QuestionRepository extends JpaRepository<Question, UUID>, JpaSpecificationExecutor<Question> {

}

From source file org.unidle.repository.ResponseRepository.java

public interface ResponseRepository extends JpaRepository<Response, UUID>, JpaSpecificationExecutor<Response> {

}

From source file example.springdata.jpa.showcase.after.CustomerRepository.java

/**
 * Repository to manage {@link Customer} instances.
 * 
 * @author Oliver Gierke
 */
public interface CustomerRepository extends CrudRepository<Customer, Long>, JpaSpecificationExecutor<Customer> {

From source file org.unidle.repository.AttachmentRepository.java

public interface AttachmentRepository
        extends JpaRepository<Attachment, UUID>, JpaSpecificationExecutor<Attachment> {

}

From source file app.data.local.CollectionRepository.java

public interface CollectionRepository
        extends CrudRepository<Collection, Long>, JpaSpecificationExecutor<Collection> {

    Page<Collection> findByUser(User user, Pageable pageable);

    Collection findOneByUserAndLink(User user, Link link);

From source file com.netflix.genie.core.jpa.repositories.JpaJobMetadataRepository.java

/**
 * Job Metadata repository.
 *
 * @author tgianos
 * @since 3.0.0
 */

From source file com.netflix.genie.core.jpa.repositories.JpaJobExecutionRepository.java

/**
 * Job repository.
 *
 * @author tgianos
 * @since 3.0.0
 */

From source file name.marcelomorales.siqisiqi.openjpa.spring.OpenJpaRepository.java

/**
 * @author Marcelo Morales
 *         Date: 8/29/13
 */
public interface OpenJpaRepository<T, ID extends Serializable>
        extends JpaRepository<T, ID>, JpaSpecificationExecutor<T> {